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
+
+
+
+
+
+
Sales Table (Daily Sale)
+
+
+
+
+ | Date |
+ Reference Number |
+ Cashier |
+ Customer |
+ Grand Total |
+ Cash |
+ Card 1 |
+ Card 2 |
+ Card 3 |
+ Online Transfer |
+ Link Pay |
+ Due Amount |
+
+
+
+ {{-- @foreach ($sales_data as $sale) --}}
+
+ {{-- @endforeach --}}
+
+
+
+ | Total |
+ 0.00 |
+ 0.00 |
+ 0.00 |
+ 0.00 |
+ 0.00 |
+ 0.00 |
+ 0.00 |
+ 0.00 |
+
+
+
+
+
+
+
+
Credit Sale Collections
+
+
+
+
+ | Original Bill Date |
+ Reference Number |
+ Cashier |
+ Customer |
+ Grand Total |
+ Cash |
+ Card 1 |
+ Card 2 |
+ Card 3 |
+ Online Transfer |
+ Link Pay |
+
+
+
+ {{-- @foreach ($credit_data as $credit) --}}
+
+ {{-- @endforeach --}}
+
+
+
+ | Total |
+ 0.00 |
+ 0.00 |
+ 0.00 |
+ 0.00 |
+ 0.00 |
+ 0.00 |
+ 0.00 |
+
+
+
+
+
+
+
+
Payment Method Summary
+
+
+
+
+ | Payment Option |
+ Sale Amount |
+ Received Amount |
+ Total Amount |
+
+
+
+
+ | Cash |
+ 0.00 |
+ 0.00 |
+ 0.00 |
+
+
+ | Card 1 |
+ 0.00 |
+ 0.00 |
+ 0.00 |
+
+
+ | Card 2 |
+ 0.00 |
+ 0.00 |
+ 0.00 |
+
+
+ | Card 3 |
+ 0.00 |
+ 0.00 |
+ 0.00 |
+
+
+ | Online Transfer |
+ 0.00 |
+ 0.00 |
+ 0.00 |
+
+
+ | Link Pay |
+ 0.00 |
+ 0.00 |
+ 0.00 |
+
+
+
+
+ | Grand Total |
+ 0.00 |
+ 0.00 |
+ 0.00 |
+
+
+
+
+
+
+
+
+
@endsection
+
+@push('scripts')
+
+@endpush
\ No newline at end of file