Manage Time Zone

{{ Form::open( array('url' => action('TimeZoneController@searchTimeZone'), 'method'=>'post', 'id' => 'searchForm') ) }}
{{ Form::submit('Search', ['id' => 'searchBtn', 'class' => 'btn btn-primary']) }}
+
{{ Form::close() }}
{{-- START ALERT BLOCK --}} @if(Session::has('successMessage')) @endif @if(Session::has('dangerMessage') || count($errors)) @endif {{-- END ALERT BLOCK --}}
@php $n = "0"; @endphp @forelse($timeZone as $state) {{-- START EDIT MODAL --}} {{-- END EDIT MODAL --}} @empty @endforelse
ID. Time Zone Name Time Zone Short Active
{{ $state->id }} {{ $state->time_zone_name }} {{ $state->time_zone_short}} {!! html_entity_decode(link_to_route('admin-del-time_zone', '', [$state->id], ['onclick' => 'return checkDelete()', 'title' => 'Delete'])) !!} @if($state->status == 1) {!! html_entity_decode(link_to_route('admin-active-time_zone', '', [$state->id], [ 'onclick' => 'return checkInActive()', 'title' => 'Activate'])) !!} @elseif($state->status == 0) {!! html_entity_decode(link_to_route('admin-inactive-time_zone', '', [$state->id], [ 'onclick' => 'return checkActive()', 'title' => 'Deactivate'])) !!} @endif
No Records Found.