mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
26 lines
464 B
PHP
26 lines
464 B
PHP
<?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,
|
|
]);
|
|
});*/
|
|
}
|
|
}
|