tethys/app/Models/Project.php
Arno Kaimbacher 8ea540a88c - laravel framework upgrade frpm 7.x to 8. see also: https://laravel.com/docs/8.x/upgrade#assert-exact-json-method
- use  PHP7 null coalesce operator instead of laravel optional method
- change Breadcrumbs::register method to Bredcrumbs::for method
- composer updates
2022-08-10 11:18:10 +02:00

32 lines
792 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use App\Models\Dataset;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class Project extends Model
{
use HasFactory;
//protected $table = 'projects';
// for using $input = $request->all();
//$project = Project::create($input);
protected $fillable = [
'name', 'label', 'description'
];
public function documents()
{
//model, foreign key on the Document model is project_id, local id of category
return $this->hasMany(Dataset::class, 'project_id', 'id');
}
// 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');
// }
}