This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.
You can install the package via composer:
composer require drewroberts/blogYou can publish the config file with:
php artisan vendor:publish --provider="DrewRoberts\Blog\BlogServiceProvider" --tag="config"This is the contents of the published config file:
return [
];The migrations will run from the package. You can extend the Models from the package if you need additional classes or functions added to them.
If you would like to use the Nova resources included with this package, you need to register it manually in your NovaServiceProvider in the boot method.
Nova::resources([
\DrewRoberts\Media\Nova\Image::class,
\DrewRoberts\Media\Nova\Tag::class,
\DrewRoberts\Media\Nova\Video::class,
\DrewRoberts\Blog\Nova\Series::class,
\DrewRoberts\Blog\Nova\Topic::class,
\DrewRoberts\Blog\Nova\Page::class,
\DrewRoberts\Blog\Nova\Post::class,
]);$blog = new DrewRoberts\Blog();
echo $blog->echoPhrase('Hello, DrewRoberts!');composer testPlease see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email packages@drewroberts.com instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.