Viewing: BlogSeeder.php
<?php namespace Database\Seeders; use App\Models\Blog; use Illuminate\Support\Carbon; use Illuminate\Database\Seeder; class BlogSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { Blog::insert([ 'title_tag' => 'h1', 'title' => 'What is Lorem Ipsum', 'image_url' => "blogImages/0s4Wb41.webp", 'blog_meta' => 'Supplying leading brands of sign printing and production', 'description' => 'Supplying leading brands of sign printing and production systems for over 12 years including Mutoh, Rolan and ALLWIN printers. SME are ideally positioned to advise,deliver, train and support the display graphic industries across the Kingdom.', 'slug' => 'blog', "created_at" => Carbon::now(), "updated_at" => Carbon::now(), ]); } }
Return