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