upload purchase order

This commit is contained in:
Nazri
2018-05-28 17:24:13 +08:00
parent 5c1a4d28c4
commit 4210cdc19d
9 changed files with 118 additions and 13 deletions
+10
View File
@@ -0,0 +1,10 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class PurchaseOrder extends Model
{
protected $fillable = ['image_location','amount','book_id'];
}