@extends('layouts.admin') @section('title', 'Custom Voucher') @section('content-header', 'Custom Voucher') @section('content')
@csrf @php $date = date('Y-m-d H:i:s'); @endphp
Application Information
@error('request_user') {{ $message }} @enderror
@error('request_date') {{ $message }} @enderror

Voucher Details

@php $count = 1; @endphp @foreach ($outlet as $key)
@if ($count % 3 == 0 || $count == count($branches))
@endif @php $count++; @endphp @endforeach

@error('effective_date') {{ $message }} @enderror
@error('expiry_date') {{ $message }} @enderror
@error('purpose') {{ $message }} @enderror
@error('customer_name') {{ $message }} @enderror
@error('file') {{ $message }} @enderror
Get CSV File: Cash Voucher Sample
! Do make sure the CSV file follows the format given above.
@endsection