bookinventory/app/Models/Location.php

18 lines
245 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Location extends Model {
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'name',
];
}