@if(session('msg_success'))
@endif
@if(session('msg_update'))
@endif
@if(session('msg_delete'))
@endif
{{ Form::open(['url' => 'datewiseapionts', 'class' => 'form-horizontal', 'method' => 'post', 'files'=>true]) }}
{{ Form::label('to', 'TO', array('class' =>' col-sm-1 col-md-1 col-lg-1')) }}
{{ Form::close() }}
{{ Form::submit('OK', array('class' => 'btn btn-success btn-sm')) }}
@if(isset($apointinfo))
@endif
Token | Customer | Staff | Schedule | Start | End | Amount | Discount | Status | Actions | @foreach($apointinfo as $value)
---|---|---|---|---|---|---|---|---|---|
{{ $value->tokeno }} | {{ $value->custname }} | {{ $value->concern }} | {{ $value->scdultime }} | @if($value->strtime!="0000-00-00 00:00:00"){{ date('d-m-Y h:i:s A',strtotime($value->strtime)) }} @endif | @if($value->endtime!="0000-00-00 00:00:00"){{ date('d-m-Y h:i:s A',strtotime($value->endtime)) }} @endif | {{ number_format($value->amount, 2, '.', '')}} | {{ number_format($value->flat_discount+$value->discount, 2, '.', '') }} | {{ $value->status }} |
|