25 lines
438 B
PHP
25 lines
438 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class Document extends Model
|
|
{
|
|
use HasFactory, SoftDeletes;
|
|
|
|
protected $fillable = [
|
|
'project_id',
|
|
'name',
|
|
'parent_id',
|
|
];
|
|
|
|
public function childs() {
|
|
|
|
return $this->hasMany('App\Category','parent_id','id') ;
|
|
|
|
}
|
|
}
|