wateringcart / laravel-posts
Laravel-Posts.
This package's canonical repository appears to be gone and the package has been frozen as a result. Email us for help if needed.
Installs: 20
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
pkg:composer/wateringcart/laravel-posts
Requires
- php: >=5.6.0
Requires (Dev)
- phpunit/phpunit: ~5.7
This package is not auto-updated.
Last update: 2025-06-08 05:23:45 UTC
README
README.md
- Add posts to
composer.json:
"wateringcart/laravel-posts": "dev-master",
- Run
composer updateto pull down the code:
$ composer up
- Edit
app/config/app.phpand add the provider, Add the alias:
'providers' => [
// ... orther providers ...
Wateringcart\PostsServiceProvider::class,
],
'aliases' => [
// ... orther ServiceProvider aliases ...
'Posts' => Wateringcart\PostsServiceProvider::class,
],
vendor:publish:
$ php artisan vendor:publish --provider="Wateringcart\PostsServiceProvider"