コード例 #1
0
ファイル: CityController.php プロジェクト: w1lliams/sh
 /**
  * Удаление города
  *
  * @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');
 }