tethys/app/Shelf.php
Arno Kaimbacher 8dc1f1b048 my changes
2020-06-10 21:09:10 +02:00

18 lines
237 B
PHP
Executable File

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Shelf extends Model
{
protected $fillable = [
'shelf'
];
// public function books()
// {
// return $this->hasMany('App\Book');
// }
}