mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
v1.7 alpha.3
This commit is contained in:
@@ -12,7 +12,6 @@ class DatabaseSeeder extends Seeder
|
||||
public function run()
|
||||
{
|
||||
$this->call(PageSeeder::class);
|
||||
$this->call(SettingSeeder::class);
|
||||
$this->call(ContentSeeder::class);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,25 +0,0 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class SettingSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
/* $columns = collect([
|
||||
|
||||
]);
|
||||
|
||||
$columns->each(function ($col) {
|
||||
DB::table('settings')->insert([
|
||||
'name' => $col['name'],
|
||||
'value' => isset($col['value']) ? $col['value'] : null,
|
||||
]);
|
||||
});*/
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user