mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
17 lines
281 B
PHP
17 lines
281 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\License;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
class LicenseSeatFactory extends Factory
|
|
{
|
|
public function definition()
|
|
{
|
|
return [
|
|
'license_id' => License::factory(),
|
|
];
|
|
}
|
|
}
|