Skip to content

Instantly share code, notes, and snippets.

View mcloots's full-sized avatar

Michaël Cloots mcloots

  • Thomas More
View GitHub Profile
@mcloots
mcloots / courses
Last active October 20, 2020 14:32
Data inserts student administration project
DB::table('courses')->insert(
[
[
'programme_id' => 1,
'name' => 'PHP',
'description' => 'Develop web applications in PHP using Laravel',
'created_at' => now()
],
[
'programme_id' => 1,