54 lines
1.1 KiB
PHP
54 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Order extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
/**
|
|
* The table associated with the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'orders';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array<int, string>
|
|
*/
|
|
protected $fillable = [
|
|
// 'order_id', // Jika Anda memutuskan untuk mengembalikan kolom ini di DB
|
|
'customer_name',
|
|
'customer_email',
|
|
'table_id',
|
|
'total_amount',
|
|
'payment_method',
|
|
'transaction_status',
|
|
'midtrans_transaction_id',
|
|
];
|
|
|
|
/**
|
|
* The attributes that should be cast.
|
|
*
|
|
* @var array<string, string>
|
|
*/
|
|
protected $casts = [
|
|
'total_amount' => 'decimal:2', // Pastikan presisi 2 desimal
|
|
'created_at' => 'datetime',
|
|
'updated_at' => 'datetime',
|
|
];
|
|
|
|
/**
|
|
* Get the order items for the order.
|
|
*/
|
|
public function items()
|
|
{
|
|
return $this->hasMany(OrderItem::class, 'order_id', 'id');
|
|
}
|
|
}
|