// SYSTEM PANEL //
[ROOT]
/
mnt
/
pleskStorage
/
vhosts
/
kodsolutions.net
/
subdomains
/
syaaraa.kodsolutions.net
/
database
/
seeders
[ PARENT ]
EDIT :: SettingsTableDataSeeder.php
<?php namespace Database\Seeders; use App\Models\Setting; use Illuminate\Database\Seeder; class SettingsTableDataSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { //php artisan db:seed --class=SettingsTableDataSeeder Setting::create([ 'email' => 'info@motelz.com', 'phone' => '01003265652', 'whatsApp' => '00201003265652', 'facebook' => 'https://facebook.com', 'twitter' => 'https://twitter.com', 'youTube' => 'https://www.youtube.com', 'instagram' => 'https://instagram.com', 'about' => [ 'en' => 'motelz', 'ar' => 'موتيلز' ], 'title' => [ 'en' => 'motelz', 'ar' => 'موتيلز' ], 'footer' => [ 'en' => '© 2023 motelz. Crafted with by motelz', 'ar' => '© 2023 motelz. Crafted with by motelz' ] ]); } }
SAVE
CANCEL