generate report test

This commit is contained in:
SUM2046
2026-07-06 15:25:45 +05:30
parent 720752a781
commit a4a7b09c10
3 changed files with 223 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<?php
namespace Modules\DailySalePaymentReportModule\Database\factories;
use Illuminate\Database\Eloquent\Factories\Factory;
class CustomerFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = \Modules\DailySalePaymentReportModule\Entities\Customer::class;
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
//
];
}
}