parfum/app/Models/BottleOutlet.php
Yoga Pangestu 4c43729299 feat(bottle): crud botol
-menambahkan skema model dan migrsai
-menyesuaikan relasi
2025-10-02 09:34:56 +07:00

13 lines
182 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class BottleOutlet extends Model
{
protected $table = 'bottle_outlet';
protected $guarded = ['id'];
}