laravel-populator icon indicating copy to clipboard operation
laravel-populator copied to clipboard

Laravel populator provides a unified way to populate your database.

Results 5 laravel-populator issues
Sort by recently updated
recently updated
newest added

Will be great if there will be possibility to remove all data from one populator/bundle. For example: ```php Populator::remove('initial') ->all() ``` ```php Populator::remove('initial') ->bundles([ Bundle::remove(User::class), ]) ->call() ```

Adds a command to interactively create the sample file for the user. It will check the `fillable` property and create an interactive "questionaire".

enhancement

Add an example option that will also create a sample .php or .json file

enhancement

Add -m and --migration options to automatically create a migration for the user and call the populator.

enhancement

Add an interactive prompt to create the `samples()` method for the user. Optionally also get the model's `fillable` properties and create a default sample with predefined structure, so that the...

enhancement