%PDF- %PDF-
Direktori : /home/silvzytp/dsr_code/app/Models/ |
Current File : //home/silvzytp/dsr_code/app/Models/MonthlyCommitment.php |
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class MonthlyCommitment extends Model { use HasFactory; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'user_id', 'date', 'expected_meeting', 'agent_name', 'project_name', 'expected_sale', 'meeting_done', 'sale', ]; public function user(){ return $this->belongsTo(User::class); } }