mirror of https://github.com/4xmen/xshop.git
Compare commits
3 Commits
40cc0a0061
...
90e83517af
Author | SHA1 | Date |
---|---|---|
Farzad AsA | 90e83517af | 1 year ago |
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