/**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function destroy($id)
 {
     //
     if ($this->checkProjectOwner($id) == false) {
         return ['error' => true, 'message' => 'Access forbidden'];
     }
     return $this->service->destroy($id);
 }