A powerful package to add posts resource to nova panel .
sohbatiha/nova-posts is a Laravel package for a powerful package to add posts resource to nova panel ..
It currently has 0 GitHub stars and 10 downloads on Packagist (latest version v1.0.3).
Install it with composer require sohbatiha/nova-posts.
Discover more Laravel packages by sohbatiha
or browse all Laravel packages to compare alternatives.
Last updated
composer require sohbatiha/nova-posts
Then you can publish and migrate to create the needed tags table
php artisan vendor:publish
php artisan migrate
for add additional fields to posts resource add below code to your service provider :
#use Illuminate\Support\Facades\Event;
#use Laravel\Nova\Fields\ID;
public function boot()
{
//...
Event::listen("PostPackage::Fields" , function(){
return [
11=>ID::make()->sortable(),
//and other fields ...
];
});
//...
};