add upload invoice and test

This commit is contained in:
Too
2018-06-21 13:15:36 +08:00
parent 93d866f432
commit db7e30ea95
7 changed files with 434 additions and 312 deletions
+10
View File
@@ -0,0 +1,10 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Invoice extends Model
{
protected $fillable = ['invoice_url','amount','booking_id'];
}