mirror of
https://gitlab.com/omair-personal/exchange.git
synced 2026-08-19 12:34:13 +00:00
4a4e147072
fix UserBankSlip class not found fix undefined book_id added loading when confirm booking added confirm booking success redirect with correct page added error handling for upload user bankslip completed upload user bankslip flow
11 lines
165 B
PHP
11 lines
165 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class PurchaseOrder extends Model
|
|
{
|
|
protected $fillable = ['image_url','amount','booking_id'];
|
|
}
|