39 lines
1.1 KiB
PHP
39 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class PaketFotoSeeder extends Seeder
|
|
{
|
|
public function run(): void
|
|
{
|
|
$data = [
|
|
[
|
|
'nama' => 'Wisuda Basic',
|
|
'harga' => 250000,
|
|
'deskripsi' => 'Foto wisuda outdoor 1 jam, 10 edit file, all file mentah.',
|
|
'foto' => 'img/foto/foto1.jpeg',
|
|
'durasi' => '60',
|
|
],
|
|
[
|
|
'nama' => 'Couple Studio Session',
|
|
'harga' => 350000,
|
|
'deskripsi' => 'Foto studio couple 45 menit, 2 cetak 10R, 5 edit file.',
|
|
'foto' => 'img/foto/foto2.jpeg',
|
|
'durasi' => '45',
|
|
],
|
|
[
|
|
'nama' => 'Group Photoshoot (Max 10 Orang)',
|
|
'harga' => 500000,
|
|
'deskripsi' => 'Foto grup, cocok untuk angkatan atau keluarga besar. Durasi 2 jam.',
|
|
'foto' => 'img/foto/foto3.jpeg',
|
|
'durasi' => '120',
|
|
],
|
|
];
|
|
|
|
DB::table('paket_fotos')->insert($data);
|
|
}
|
|
}
|