Initial commit for DailySalePaymentReportModule

This commit is contained in:
2026-07-03 10:03:00 +05:30
commit 79aaecfcf0
31 changed files with 419 additions and 0 deletions

0
Resources/views/.gitkeep Normal file
View File

View File

@@ -0,0 +1,9 @@
@extends('dailysalepaymentreportmodule::layouts.master')
@section('content')
<h1>Hello World</h1>
<p>
This view is loaded from module: {!! config('dailysalepaymentreportmodule.name') !!}
</p>
@endsection

View File

@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Module DailySalePaymentReportModule</title>
{{-- Laravel Mix - CSS File --}}
{{-- <link rel="stylesheet" href="{{ mix('css/dailysalepaymentreportmodule.css') }}"> --}}
</head>
<body>
@yield('content')
{{-- Laravel Mix - JS File --}}
{{-- <script src="{{ mix('js/dailysalepaymentreportmodule.js') }}"></script> --}}
</body>
</html>