mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-26 06:04:08 -08:00
22 lines
366 B
PHP
22 lines
366 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\License;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
class LicenseSeatFactory extends Factory
|
|
{
|
|
/**
|
|
* Define the model's default state.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function definition()
|
|
{
|
|
return [
|
|
'license_id' => License::factory(),
|
|
];
|
|
}
|
|
}
|