mirror of
https://gitlab.com/omair-personal/exchange.git
synced 2026-08-19 12:34:13 +00:00
4e448afc60
added confirm invoice feature (after user upload the image)
15 lines
244 B
PHP
15 lines
244 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Invoice extends Model
|
|
{
|
|
protected $fillable = ['invoice_url','amount','booking_id'];
|
|
|
|
public function booking(){
|
|
return $this->hasOne('App\Booking');
|
|
}
|
|
}
|