feat: add app and database modules

This commit is contained in:
2026-05-21 16:05:11 +07:00
parent 37b7e783f5
commit fad70d096b
212 changed files with 23901 additions and 0 deletions
+49
View File
@@ -0,0 +1,49 @@
<?php
/**
* ============================================================
*
* @project biiproject
*
* @author Andika Debi Putra
*
* @email andikadebiputra@gmail.com
*
* @website https://biiproject.com
*
* @copyright Copyright (c) 2026 Andika Debi Putra
* @license Proprietary - All Rights Reserved
*
* @version 1.0.0
*
* @created 2026-05-01
* ============================================================
*
* Unauthorized copying, modification, distribution, or use
* of this file is strictly prohibited without prior written
* permission from the author.
* ============================================================
*/
namespace Database\Seeders;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
public function run(): void
{
$this->call([
// Use the newly generated seeders from current database state
UsersTableSeeder::class,
RolesTableSeeder::class,
PermissionsTableSeeder::class,
ModelHasRolesTableSeeder::class,
ModelHasPermissionsTableSeeder::class,
RoleHasPermissionsTableSeeder::class,
SystemSettingsTableSeeder::class,
MobileSettingsTableSeeder::class,
]);
$this->call(SystemSettingsTableSeeder::class);
}
}