Esempio n. 1
0
 public function destroy($id)
 {
     Outbound::find($id)->delete();
     $outbounds = Outbound::orderBy('name')->paginate(env('OUTBOUND_PAGINATION_MAX'));
     return view('outbounds.index')->with('outbounds', $outbounds);
 }