You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
295 B
7 lines
295 B
@php($params = session('dash_params'))
|
|
@if($params['zone_id']!='all')
|
|
@php($zone_name=\App\Models\Zone::where('id',$params['zone_id'])->first()->name)
|
|
@else
|
|
@php($zone_name=translate('All'))
|
|
@endif
|
|
<span class="badge badge-soft--info my-2">{{translate('messages.zone')}} : {{$zone_name}}</span>
|
|
|