@extends('admin.layouts.app') @section('title', 'Purchase Trash List') @push('styles') @include('datatable.css.data_table_css') @endpush @section('container')

Purchase Trash List

@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif
{{--

Striped rows

Use .table-striped to add zebra-striping to any table row within the <tbody>.

--}}
@foreach($orders as $index => $order) @endforeach
S/L Date Purchase No Supplier Grand Total Action
{{ $index+1 }} {{ date('d-m-Y',strtotime($order->date)) }} {{ $order->purchase_no }} {{ $order->supplier->name??'' }} {{ $order->grand_total_amount }} Logs
@endsection @push('scripts') @include('datatable.js.data_table_js') {{-- {!! $dataTable->scripts() !!} --}} {{-- {{ $dataTable->scripts(attributes: ['type' => 'module']) }}--}} @endpush