aaw0/adnec-press-releases

Press Releases package creates a model, database table and laravel nova resource ready for you.

v1.0 2022-06-14 10:50 UTC

This package is auto-updated.

Last update: 2024-04-10 12:03:26 UTC


README

Press Releases package creates a model, database table and laravel nova resource ready for you.

  • This package requires Laravel Nova installed already.
  • This package only adds functionality to the Nova admin panel, and the front end is up to you.

Installation

1 - Add to composer.json file the adnec press releases package like below

"repositories": [
        {
            "type": "composer",
            "url": "https://nova.laravel.com"
        },
        {
            "type": "vcs",
            "url":  "https://github.com/aaw0/adnec-press-releases.git"
        }
    ],

2 - Install by running the following composer line

composer require aaw0/adnec-press-releases

3 - Add the following line to config/app.php

'providers' => [
  
  /*Other classes*/
  
  \Aaw0\AdnecPressReleases\AdnecPressReleasesServiceProvider::class;
];

4 - Finally Run php artisan migrate