@extends('layouts.template') @section('content')
@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::submit('OK', array('class' => 'btn btn-success btn-sm')) }}
{{ Form::close() }}
@if(isset($apointinfo)) @foreach($apointinfo as $value) @endforeach
Token Customer Staff Schedule Start End Amount Discount Status Actions
{{ $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 }}
@endif
{{ Form::open(['url' => 'updateapoints', 'class' => 'form-horizontal', 'method' => 'post', 'files'=>true]) }} {{ Form::close() }}

@stop