Ejemplo n.º 1
0
 /**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     $settings = FormSetting::where('client_id', '=', $id);
     $settings->delete();
     Client::destroy($id);
     return redirect('callback/client');
 }