コード例 #1
0
ファイル: ClientService.php プロジェクト: henemer/codeproject
 public function show($id)
 {
     try {
         return $this->repository->find($id);
     } catch (ModelNotFoundException $e) {
         return ['error' => true, 'message' => 'Client not found'];
     }
 }
コード例 #2
0
 public function show($id)
 {
     return $this->repository->find($id);
 }
コード例 #3
0
 public function destroy($projectId, $id)
 {
     $this->repository->find($id)->delete();
 }