Example #1
0
 /**
  * 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();
 }
Example #2
0
 /**
  * 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();
 }