File: /home/slfopp7cb1df/www/shaneconrad.me/inventory/app/Models/Task.php
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Task extends Model
{
use HasFactory;
protected $dates = ['deleted_at'];
protected $fillable = [
'title','project_id','start_date','end_date','company_id','description','status'
];
protected $casts = [
'project_id' => 'integer',
'company_id' => 'integer',
];
public function project()
{
return $this->belongsTo('App\Models\Project');
}
public function company()
{
return $this->hasOne('App\Models\Company', 'id', 'company_id');
}
public function assignedEmployees()
{
return $this->belongsToMany('App\Models\Employee');
}
}