24 lines
479 B
PHP
Executable File
24 lines
479 B
PHP
Executable File
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use App\Models\Barbershop;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class BarbershopSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*/
|
|
public function run(): void
|
|
{
|
|
Barbershop::create([
|
|
'name' => 'XYZ Barbershop',
|
|
'contact_number' => '08123456789',
|
|
'landmark' => 'Depan J.co',
|
|
'address' => 'Jl.Babaru Nagri',
|
|
'opened' => '2023-01-01',
|
|
]);
|
|
}
|
|
}
|