initial commit

This commit is contained in:
Behzad Babaei
2020-03-28 17:02:54 +04:30
commit 851454db11
39 changed files with 946 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Order extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'quantity',
'discount',
'total_price',
'product_id'
];
}