tethys/app/Category.php

18 lines
210 B
PHP
Raw Normal View History

2015-07-19 06:49:24 +00:00
<?php namespace App;
use Illuminate\Database\Eloquent\Model;
class Category extends Model {
protected $fillable = [
'category'
];
public function books()
{
return $this->hasMany('App\Book');
}
}