UnknownSec Bypass
403
:
/
mnt
/
lmsestudio-instance-vol002
/
lms_cf74f05fb65b
/
database
/
seeds
/ [
drwxr-xr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
DatabaseSeeder.php
<?php use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Seeder; /** * Class DatabaseSeeder */ class DatabaseSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { Model::unguard(); DB::statement('SET FOREIGN_KEY_CHECKS=0;'); $this->call('AclTablesSeeder'); $this->command->info('ACL criada'); //$this->call('UserTableSeeder'); //$this->command->info('Tabela de Usuários Alimentada!'); $this->call('LanguagesTableSeeder'); $this->command->info('Tabela de Linguagens Alimentada'); //$this->call('CategoriesTableSeeder'); //$this->command->info('Tabela de Categorias Alimentada'); //$this->call('PostsTableSeeder'); //$this->command->info('Tabela de Posts Alimentada'); $this->call('CourseLevelSeeder'); $this->command->info('Tabela de Níveis de Curso'); $this->call('CourseTypeSeeder'); $this->command->info('Tabela de Tipos de Curso'); $this->call('CourseCertificateSeeder'); $this->command->info('Tabela de Certificados de Curso'); $this->call('PlansTableSeeder'); $this->command->info('Tabela de Planos'); $this->call('LanguagesTableSeeder'); $this->command->info('Tabela de Línguas'); $this->call('PagesSeeder'); $this->command->info('Páginas Estáticas Criadas'); $this->call('TicketTypesTableSeeder'); $this->command->info('Tipos de Tickets Criados'); $this->call('TicketStatusesTableSeeder'); $this->command->info('Status de Tickets Criados'); $this->call('ConfigSeeder'); $this->command->info('Configurações Criadas'); $this->call('ResourcesSeeder'); $this->command->info('Resources Criadas'); $this->call('QuizAverageRuleSeeder'); $this->command->info('Médias dos questionários criadas'); $this->call('QuestionTypeSeeder'); $this->command->info('Tipos de Questão criados'); $this->call('LoginTableSeeder'); $this->command->info('Tabela de estatísticas(logins) alimentada'); DB::statement('SET FOREIGN_KEY_CHECKS=1;'); } }
Copyright © 2026 - UnknownSec