18 lines
210 B
PHP
Executable File
18 lines
210 B
PHP
Executable File
<?php namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Category extends Model {
|
|
|
|
protected $fillable = [
|
|
'category'
|
|
];
|
|
|
|
|
|
public function books()
|
|
{
|
|
return $this->hasMany('App\Book');
|
|
}
|
|
|
|
}
|