ultimatepos/app/ProductRack.php

16 lines
225 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class ProductRack extends Model
{
/**
* The attributes that aren't mass assignable.
*
* @var array
*/
protected $guarded = ['id'];
}