コード例 #1
0
ファイル: Store.php プロジェクト: stevebauman/maintenance
 /**
  * Execute the job.
  *
  * @return bool
  */
 public function handle()
 {
     $this->priority->user_id = auth()->id();
     $this->priority->name = $this->request->input('name');
     $this->priority->color = $this->request->input('color');
     return $this->priority->save();
 }
コード例 #2
0
ファイル: Update.php プロジェクト: stevebauman/maintenance
 /**
  * Executes the job.
  *
  * @return bool
  */
 public function handle()
 {
     $this->priority->name = $this->request->input('name', $this->priority->name);
     $this->priority->color = $this->request->input('color', $this->priority->color);
     return $this->priority->save();
 }