Beispiel #1
0
 /**
  * Remove the specified Fascie from storage.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function destroy($id, FascieRepo $fascie_repo)
 {
     $delete = $fascie_repo->remove($id);
     return 'true';
 }