mirror of
https://gitlab.com/omair-personal/exchange.git
synced 2026-08-19 12:34:13 +00:00
11 lines
162 B
PHP
11 lines
162 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class PurchaseOrder extends Model
|
|
{
|
|
protected $fillable = ['image_url','amount','book_id'];
|
|
}
|