芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/public_html/design.pulsehost.co.uk/application/app/Models/Milestone.php
belongsTo('App\Models\User', 'milestone_creatorid', 'id'); } /** * relatioship business rules: * - the Project can have many Milestone * - the Milestone belongs to one Project */ public function project() { return $this->belongsTo('App\Models\Project', 'milestone_projectid', 'project_id'); } /** * relatioship business rules: * - the milestone can have many tasks * - the task belongs to one milestone */ public function tasks() { return $this->hasMany('App\Models\Task', 'task_milestoneid', 'milestone_id'); } }