Files
crater/database/factories/EstimateTemplateFactory.php
Mohit Panjwani 89ee58590c build version 400
2020-12-02 17:54:08 +05:30

31 lines
606 B
PHP

<?php
namespace Database\Factories;
use Crater\Models\EstimateTemplate;
use Illuminate\Database\Eloquent\Factories\Factory;
class EstimateTemplateFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = EstimateTemplate::class;
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
'path' => $this->faker->word,
'view' => $this->faker->word,
'name' => $this->faker->word,
];
}
}