vadiasov / tags
Laravel package to create Tags, to create CRUD actions with them in administrative panel.
Installs: 21
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Language:HTML
Requires
- php: >=7.0
- illuminate/support: 5.*
This package is not auto-updated.
Last update: 2025-03-30 07:20:57 UTC
README
This package creates plain tags CRUD pages for tags in administrative panel.
It includes a ServiceProvider to register the package and attach it to the output. It includes migrations to create DB roles. You can publish seeds and use it to create demo tags. It includes views of the CRUD pages (blade sections).
Installation
Add the package to root composer.json:
"require": {
...
"vadiasov/tags": "^1.0",
}
Then run:
composer update
Register package in config/app.php
'providers' => [
/*
* Package Service Providers...
*/
Vadiasov\Tags\TagsServiceProvider::class,
Create model:
php artisan make:model Tag
Publish migrations and seeds. Run:
php artisan vendor:publish
and enter appropriate number of this package (see terminal output after last command).
Migrate:
php artisan migrate
Seed if you need demo data:
php artisan db:seed class=TagsSeeder
Routes
The routes are in the package:
admin/tags
admin/tags/create
admin/tags/{id}/edit
admin/tags/{id}/delete