D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
dateitor
/
www
/
database
/
seeders
/
Filename :
AboutUsTableSeeder.php
back
Copy
<?php namespace Database\Seeders; use App\Models\AboutUs; use Illuminate\Database\Seeder; class AboutUsTableSeeder extends Seeder { /** * Run the database seeds. */ public function run(): void { $aboutUs1 = AboutUs::create([ 'title' => 'Make Smart Business Card', 'description' => 'Make Your Own Smart business Card with us and grow your business easily.', ]); $aboutUs2 = AboutUs::create([ 'title' => 'About2', 'description' => 'Make Your Own Smart business Card with us and grow your business easily.', ]); $aboutUs3 = AboutUs::create([ 'title' => 'About3', 'description' => 'Make Your Own Smart business Card with us and grow your business easily.', ]); } }