tethys/app/Models/Project.php

31 lines
718 B
PHP
Raw Normal View History

2018-08-06 12:30:51 +00:00
<?php
2018-09-10 13:09:10 +00:00
namespace App\Models;
2018-08-06 12:30:51 +00:00
use Illuminate\Database\Eloquent\Model;
2018-09-10 13:09:10 +00:00
use App\Models\Dataset;
2018-08-06 12:30:51 +00:00
class Project extends Model
{
//protected $table = 'projects';
// for using $input = $request->all();
//$project = Project::create($input);
protected $fillable = [
2018-10-04 14:41:29 +00:00
'name', 'label', 'description'
2018-08-06 12:30:51 +00:00
];
public function documents()
{
//model, foreign key on the Document model is project_id, local id of category
2018-09-10 13:09:10 +00:00
return $this->hasMany(Dataset::class, 'project_id', 'id');
2018-08-06 12:30:51 +00:00
}
// public function books()
// {
// //model, foreign key on the Book model is project_id, local id of category
// return $this->hasMany('App\Book', 'project_id', 'id');
// }
}