@extends('layouts.master') @section('css') @endsection @section('title') Voucher Trash @endsection @section('content')

Voucher Trash

@if (Session::has('success')) @elseif(Session::has('error')) @endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (Session::has('existingVchNoVouchers')) @php $existingVchNoVouchers = Session::get('existingVchNoVouchers'); @endphp @endif
get('from_date')) value="{{ app('request')->input('from_date') }}" @else @php $startOfMonth = now()->startOfMonth(); $endOfMonth = now()->endOfMonth(); $from_date = $startOfMonth->toDateString(); $to_date = $endOfMonth->toDateString(); $fy_from = Auth::user()->company_profile->fy_from; $fy_to = Auth::user()->company_profile->fy_to; @endphp @if ($reportSettings == 1) value="{{ date('Y-m-d') }}" @elseif($reportSettings == 2) value="{{ $from_date }}"@elseif($reportSettings == 2) value="{{ $fy_from }}" @endif @endif>
get('to_date')) value="{{ app('request')->input('to_date') }}" @else @if ($reportSettings == 1) value="{{ date('Y-m-d') }}" @elseif($reportSettings == 2) value="{{ $to_date }}"@elseif($reportSettings == 2) value="{{ $fy_to }}" @endif @endif>
Voucher Date Voucher Number Voucher Type Debit Ledger Credit Ledger Amount Remarks Sales Executive Status Deleted By Action
Total
{{-- Delete Modal --}} {{-- Restore Modal --}} @endsection @section('script') @endsection