2019-09-03 15:43:56 +00:00
|
|
|
<?php
|
|
|
|
|
2022-08-10 09:18:10 +00:00
|
|
|
namespace Database\Seeders;
|
|
|
|
|
2022-08-12 07:53:27 +00:00
|
|
|
use Illuminate\Support\Carbon;
|
2019-09-03 15:43:56 +00:00
|
|
|
use Illuminate\Database\Seeder;
|
|
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
|
|
|
|
class ProjectsTableSeeder extends Seeder
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the database seeds.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function run()
|
|
|
|
{
|
|
|
|
DB::table('projects')->insert([
|
|
|
|
[
|
|
|
|
'label' => 'ALLG_FACHLICH',
|
|
|
|
'name' => 'Allgemein fachliche Arbeiten',
|
|
|
|
'description' => 'Allgemein fachlich interdisziplinäre Arbeiten',
|
|
|
|
'created_at' => Carbon::now(),
|
|
|
|
'updated_at' => Carbon::now(),
|
|
|
|
],
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|