/** * Force remove the specified biller from storage. * * @param int $id * @return Response */ public function delete($id) { Biller::withTrashed()->where('id', $id)->forceDelete(); return Redirect::route('billers.index'); }