PHP code example of ronasit / laravel-entity-generator
1. Go to this page and download the library: Download ronasit/laravel-entity-generator 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/ */
ronasit / laravel-entity-generator example snippets
class AppServiceProvider
{
public function boot(): void
{
// ...
if (config('app.env') === 'local') {
App::register(\RonasIT\Support\EntityGeneratorServiceProvider::class);
}
}
}
'paths' => [
... // your old data
'seeds' => 'database/seeds',
'database_seeder' => 'database/seeds/DatabaseSeeder.php',
'translations' => 'resources/lang/en/validation.php'
],
'stubs' => [
... // your old data
'empty_factory' => 'entity-generator::empty_factory',
'translation_not_found' => 'entity-generator::translation_not_found',
'validation' => 'entity-generator::validation',
'seeder' => 'entity-generator::seeder',
'database_empty_seeder' => 'entity-generator::database_empty_seeder'
]