@extends('admin.layouts.master') @section('content')
Time Slots
{!! Form::open(['method' => 'GET', 'url' => '/admin/time-slots', 'class' => 'navbar-form navbar-right', 'role' => 'search']) !!}
{!! Form::close() !!}
@foreach($timeslots as $key => $item) @endforeach
Sr.no Day Start Time End Time Status Actions
{{ (($timeslots->currentPage() - 1 ) * $timeslots->perPage() ) + $loop->iteration }} {{ isset($item->dayDetail->name)?$item->dayDetail->name:'' }} {{ $item->start_time }} {{ $item->end_time }} {{ $item->is_active==1?'Active':'Disabled' }}
{{ method_field('DELETE') }} {{ csrf_field() }}
{!! $timeslots->appends(['search' => Request::get('search')])->render() !!}
@endsection