@extends('layouts.master') @section('title', 'Receive Vouchers') @section('page-header') Receive Vouchers @stop @push('style') @endpush @section('content')
@include('partials._alert_message')

@yield('page-header')

@if(hasPermission("voucher-receives.create", $slugs)) @endif
From|To
Refresh
@forelse($vouchers as $item) @empty @endforelse
Sl Invoice No Date Reference Amount Status Actions
{{ $loop->iteration }} {{ $item->invoice_no }} {{ $item->date }} {{ $item->reference }} {{ number_format($item->amount, 2) }} {!! $item->is_approved == 1 ? 'Approved' : 'Unapproved' !!}
@include('partials._user-log', ['data' => $item]) @if(!$item->is_approved) @if(hasPermission("voucher-receives.approve", $slugs)) @endif @if(hasPermission("vouchers.edit", $slugs)) {{-- --}} @endif @endif @if(hasPermission("voucher-receives.delete", $slugs)) @endif
No Records Found!
@include('partials._paginate', ['data' => $vouchers])
@endsection @section('js') @stop