PHP code example of webed / seed-flow

1. Go to this page and download the library: Download webed/seed-flow library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

webed / seed-flow example snippets

bash
php artisan migrate
bash
php artisan webed:seedflow:make create_roles_seeder --env=dev
bash
php artisan webed:seedflow:seed --env=dev
bash
php artisan webed:seedflow:rollback --env=dev --steps=1
bash
php artisan webed:seedflow:make <name> --env=dev,stage
bash
php artisan webed:seedflow:seed [--env=dev] [--force]
bash
php artisan webed:seedflow:rollback [--env=dev] [--steps=3]