@extends('admin.layout.master') @section('title', 'Advance Adjustment List') @section('custom_style') @endsection @section('content') @include('flash-message')
Advance Adjustment List
@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{ Form::open(['route' => ['frontdesk.receipt.advance_adjust_list'], 'method' => 'get', 'class' => 'form-horizontal', 'enctype' => 'multipart/form-data']) }}
Customer List
{{-- {{ Form::select('party_id', $repository->parties(), null, ['class' => 'form-control select2', 'id' => 'party_id', 'placeholder' => 'Select Agent']) }} --}}
Date From
{{ Form::text('start_date', request()->start_date?date('d-m-Y', strtotime(request()->start_date)):date('d-m-Y'), ['class' => 'form-control date_picker', 'id' => 'start_date']) }}
Date To
{{ Form::text('end_date', request()->start_date?date('d-m-Y', strtotime(request()->start_date)):date('d-m-Y'), ['class' => 'form-control date_picker', 'id' => 'end_date']) }}
{{ Form::close() }}
@if ($advance_adjust_lists) @if (count($advance_adjust_lists) > 0)
{{--
AGENT RATE ALLOCATION REPORT
--}}

Advance Adjustment List

{{-- @if ($search_data)
{{get_warehouse_name(2)}}
Report Date: From {{$start_date->format('d-m-Y') }} To- {{$end_date->format('d-m-Y')}}
@endif --}}
{{-- --}} @php $i = 1;@endphp @foreach ($advance_adjust_lists as $list) {{-- @dd($list->journals->first()) --}} {{-- --}} @endforeach
SL Agent Received By Voucher No AmountStatus Cashier Status Accounts Status Date Time Details
{{$i++}} {{party_name($list->party_id)}} {{user_name($list->created_by)}} {{$list->invoice_no}} {{$list->amount}} {{$list->date}}
@else

No Data Found

@endif @endif @endsection @section('script') @endsection