Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created April 18, 2022 03:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/cb3dc23714c4a5a301559e06731eecfb to your computer and use it in GitHub Desktop.
Save parzibyte/cb3dc23714c4a5a301559e06731eecfb to your computer and use it in GitHub Desktop.
<?php
namespace Database\Seeders;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @return void
*/
public function run()
{
// \App\Models\User::factory(10)->create();
$this->call([PrimerUsuarioSeeder::class]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment