Manage Time Zone
{{ Form::open( array('url' => action('TimeZoneController@searchTimeZone'), 'method'=>'post', 'id' => 'searchForm') ) }}
{{ Form::close() }}
{{-- START ALERT BLOCK --}}
@if(Session::has('successMessage'))
{{ Form::submit('Search', ['id' => 'searchBtn', 'class' => 'btn btn-primary']) }}
+
{!! html_entity_decode(session('successMessage')) !!}
@endif
@if(Session::has('dangerMessage') || count($errors))
{!! html_entity_decode(session('dangerMessage')) !!}
{{ $errors->first() }}
@endif
{{-- END ALERT BLOCK --}}
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. |