mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
15 lines
313 B
PHP
15 lines
313 B
PHP
<?php
|
|
|
|
/** @var \Illuminate\Database\Eloquent\Factory $factory */
|
|
|
|
use Crater\InvoiceTemplate;
|
|
use Faker\Generator as Faker;
|
|
|
|
$factory->define(InvoiceTemplate::class, function (Faker $faker) {
|
|
return [
|
|
'path' => $faker->word,
|
|
'view' => $faker->word,
|
|
'name' => $faker->word,
|
|
];
|
|
});
|