mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-19 19:54:45 +02:00

Co-authored-by: Lance Pioch <git@lance.sh> Co-authored-by: RMartinOscar <40749467+RMartinOscar@users.noreply.github.com>
19 lines
286 B
PHP
19 lines
286 B
PHP
<?php
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\Permission;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
class PermissionFactory extends Factory
|
|
{
|
|
protected $model = Permission::class;
|
|
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
|
|
];
|
|
}
|
|
}
|