diff --git a/Resources/views/index.blade.php b/Resources/views/index.blade.php index c8e8174..7bab29d 100644 --- a/Resources/views/index.blade.php +++ b/Resources/views/index.blade.php @@ -1,9 +1,298 @@ -@extends('dailysalepaymentreportmodule::layouts.master') - +@extends('backend.layout.main') @section('content') -

Hello World

-

- This view is loaded from module: {!! config('dailysalepaymentreportmodule.name') !!} -

+ @if ($errors->has('title')) +
+ {{ $errors->first('title') }} +
+ @endif + @if (session()->has('message')) +
+ {{ session()->get('message') }} +
+ @endif + @if (session()->has('not_permitted')) +
+ {{ session()->get('not_permitted') }} +
+ @endif + +
+
+
+ +
+

Daily Sale Payment Report

+
+ +
+
+
+ +
+ +
+
+
+ +
+
+
+
+
+ +
+

Sales Table (Daily Sale)

+
+ + + + + + + + + + + + + + + + + + + {{-- @foreach ($sales_data as $sale) --}} + + {{-- @endforeach --}} + + + + + + + + + + + + + + +
DateReference NumberCashierCustomerGrand TotalCashCard 1Card 2Card 3Online TransferLink PayDue Amount
Total0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
+
+
+ +
+

Credit Sale Collections

+
+ + + + + + + + + + + + + + + + + + {{-- @foreach ($credit_data as $credit) --}} + + {{-- @endforeach --}} + + + + + + + + + + + + + +
Original Bill DateReference NumberCashierCustomerGrand TotalCashCard 1Card 2Card 3Online TransferLink Pay
Total0.00 0.00 0.00 0.00 0.00 0.00 0.00
+
+
+ +
+

Payment Method Summary

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Payment OptionSale AmountReceived AmountTotal Amount
Cash0.000.000.00
Card 10.000.000.00
Card 20.000.000.00
Card 30.000.000.00
Online Transfer0.000.000.00
Link Pay0.000.000.00
Grand Total0.000.000.00
+
+
+
+ + + @endsection + +@push('scripts') + +@endpush \ No newline at end of file