13 lines
221 B
PHP
13 lines
221 B
PHP
<?php
|
|
use Illuminate\Database\Seeder;
|
|
use App\Models\Location;
|
|
|
|
|
|
class LocationSeeder extends Seeder
|
|
{
|
|
public function run()
|
|
{
|
|
Location::truncate();
|
|
factory(Location::class, 30)->create();
|
|
}
|
|
}
|