Fixed incorrect string for location not existing

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2024-02-13 20:23:32 +00:00
parent 60ba898167
commit a76a69d085

View file

@ -168,7 +168,7 @@ class LocationsController extends Controller
{
$this->authorize('delete', Location::class);
if (is_null($location = Location::find($locationId))) {
return redirect()->to(route('locations.index'))->with('error', trans('admin/locations/message.not_found'));
return redirect()->to(route('locations.index'))->with('error', trans('admin/locations/message.does_not_exist'));
}
if ($location->users()->count() > 0) {