コード例 #1
0
ファイル: AwardsRepository.php プロジェクト: vanderlin/halp
 public function delete($id)
 {
     if (is_object($id)) {
         $id = $id->id;
     }
     $award = Award::withTrashed()->whereId($id)->first();
     if ($award) {
         $award->delete();
     }
     return $this->listener->statusResponse(['award' => $award]);
 }
コード例 #2
0
ファイル: Award.php プロジェクト: vanderlin/halp
 public function getTitleAttribute($val)
 {
     return Award::titleForType($this->name);
 }