[Back]
<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Payment extends Model
{
    protected $fillable = ['order_id','provider','status','reference','payload'];

    protected $casts = ['payload' => 'array'];

    public function order()
    {
        return $this->belongsTo(Order::class);
    }
}