Ejemplo n.º 1
0
 /**
  * Удаление города
  *
  * @param City $city
  * @return \Illuminate\Http\RedirectResponse
  * @throws \Exception
  */
 public function delete(City $city)
 {
     if (Organization::where('city_id', $city->id)->exists()) {
         dd('Есть организации с таким городом');
     }
     $city->delete();
     return redirect()->route('admin::city');
 }