Current File : //home/tradevaly/demo.tradevaly.com.bd/database/factories/HotSubCategoryCountFactory.php |
<?php
namespace Database\Factories;
use App\Models\HotSubCategoryCount;
use Illuminate\Database\Eloquent\Factories\Factory;
class HotSubCategoryCountFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = HotSubCategoryCount::class;
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
//
];
}
}