60 lines
2.0 KiB
PHP
60 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class ProdukSeeder extends Seeder
|
|
{
|
|
/**
|
|
* Run the database seeds.
|
|
*/
|
|
public function run(): void
|
|
{
|
|
$data = [
|
|
[
|
|
'petani_id' => 2,
|
|
'nama_produk' => 'Cabai Merah Keriting Segar',
|
|
'harga' => 45000,
|
|
'stok' => 50,
|
|
'deskripsi' => 'Cabai merah keriting hasil panen pagi ini. Pedas mantap, cocok untuk sambal. Bebas pestisida kimia.',
|
|
'foto_produk' => null,
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
],
|
|
[
|
|
'petani_id' => 2,
|
|
'nama_produk' => 'Tomat Buah Organik',
|
|
'harga' => 12000,
|
|
'stok' => 100,
|
|
'deskripsi' => 'Tomat buah ukuran besar, merah merona. Sangat segar untuk jus atau lalapan.',
|
|
'foto_produk' => null,
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
],
|
|
[
|
|
'petani_id' => 2,
|
|
'nama_produk' => 'Sawi Hijau (Caisim)',
|
|
'harga' => 5000,
|
|
'stok' => 25,
|
|
'deskripsi' => 'Sawi hijau segar, satu ikat besar kira-kira 500gram. Renyah dan tidak pahit.',
|
|
'foto_produk' => null,
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
],
|
|
[
|
|
'petani_id' => 2,
|
|
'nama_produk' => 'Wortel Brastagi Super',
|
|
'harga' => 15000,
|
|
'stok' => 40,
|
|
'deskripsi' => 'Wortel impor lokal kualitas super. Manis, renyah, dan warna oranye pekat.',
|
|
'foto_produk' => null,
|
|
'created_at' => now(),
|
|
'updated_at' => now(),
|
|
]
|
|
];
|
|
|
|
DB::table('produks')->insert($data);
|
|
}
|
|
} |