vilbur / voyager-seeder
Seed tables of Laravel Voyager for models.
v0.91
2018-02-13 13:06 UTC
This package is not auto-updated.
Last update: 2024-11-10 04:17:24 UTC
README
Seed your models to Voyager tables.
Create BREADS & permissions for tables.
Seed to tables:
- data_types
- data_rows
- permissions
Install
Laravel 5.5
composer require vilbur/voyager-seeder
Add to seeder
Database\Seeds\DatabaseSeeder.php
public function run() { $this->call(VoyagerSeeder::class); }
Publish config files
php artisan vendor:publish --tag="voyager-seeder"