@extends('layouts.app') @section('title') {{'Day Book List'}} @endsection @section('content')
Day Book List Back
@if (Session::has('msg'))
{{ Session::get('msg') }}
@endif
Start Date
End Date

 
Create New
04-June-2026
@php $i=0; @endphp @if($day_book_list) @foreach($day_book_list as $row) @php $i++; @endphp @endforeach @endif
S.N. Voucher No. Method Type Date Details Action
{{$i}} {{$row->voucher_no}} {{$row->db_types}} {{date('d-m-Y', strtotime($row->txn_date))}} View @if(isset($row->status) && $row->status ==0) @if (Auth::user()->parent_id == "0") |
{{method_field('DELETE')}}
@endif @endif
@endsection