Files
InvoiceShelf/database/factories/FileDiskFactory.php
Darko Gjorgjijoski 6b80b5f48d Change namespace
2024-01-27 23:53:20 +01:00

36 lines
707 B
PHP

<?php
namespace Database\Factories;
use InvoiceShelf\Models\FileDisk;
use Illuminate\Database\Eloquent\Factories\Factory;
class FileDiskFactory extends Factory
{
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = FileDisk::class;
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
{
return [
'name' => $this->faker->word,
'driver' => 'local',
'set_as_default' => false,
'credentials' => [
'driver' => 'local',
'root' => storage_path('app'),
],
];
}
}