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

View File

View File

@@ -0,0 +1,21 @@
<?php
namespace Modules\DailySalePaymentReportModule\Database\Seeders;
use Illuminate\Database\Seeder;
use Illuminate\Database\Eloquent\Model;
class DailySalePaymentReportModuleDatabaseSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
Model::unguard();
// $this->call("OthersTableSeeder");
}
}