parfum/app/Models/UserVoucher.php
Yoga Pangestu c4b90acf53 feat: membuat factory seluruh model
- menyesuaikan model jika ada yang salah seperti kurangnya trait SoftDeletes, casting yang salah, relasi yang kurang dan lainnya
- memperbaiki enum di migrasi
2025-12-09 08:25:07 +07:00

20 lines
292 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class UserVoucher extends Model
{
protected $table = 'user_voucher';
protected $guarded = ['id'];
protected function casts(): array
{
return [
'quantity' => 'int',
];
}
}