tethys/app/Shelf.php

18 lines
237 B
PHP
Raw Normal View History

2018-08-06 14:30:51 +02:00
<?php
namespace App;
2015-07-19 13:49:24 +07:00
use Illuminate\Database\Eloquent\Model;
2018-08-06 14:30:51 +02:00
class Shelf extends Model
{
2015-07-19 13:49:24 +07:00
2018-08-06 14:30:51 +02:00
protected $fillable = [
'shelf'
];
2015-07-19 13:49:24 +07:00
2018-08-06 14:30:51 +02:00
// public function books()
// {
// return $this->hasMany('App\Book');
// }
2015-07-19 13:49:24 +07:00
}