mirror of https://github.com/4xmen/xshop.git
Compare commits
2 Commits
eb3d852dae
...
705c5667e2
Author | SHA1 | Date |
---|---|---|
A1Gard | 705c5667e2 | 1 year ago |
A1Gard | 8cdd2d92b7 | 1 year ago |
@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use App\Models\Customer;
|
||||
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class CustomerSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
//
|
||||
Customer::factory(5)->create();
|
||||
}
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 671 KiB |
Binary file not shown.
After Width: | Height: | Size: 671 KiB |
Loading…
Reference in New Issue