- Mainly getting rid of existing css/js - No longer linking to stuff like a11y.css - Creating a FrontPageController to better deal with the home page
14 lines
315 B
PHP
14 lines
315 B
PHP
<?php
|
|
|
|
use App\Models\Note;
|
|
use Faker\Generator as Faker;
|
|
use Illuminate\Support\Carbon;
|
|
|
|
$factory->define(Note::class, function (Faker $faker) {
|
|
$now = Carbon::now()->subDays(rand(5, 15));
|
|
return [
|
|
'note' => $faker->paragraph,
|
|
'created_at' => $now,
|
|
'updated_at' => $now,
|
|
];
|
|
});
|