PATH:
home
/
rwabteecom
/
project_11
/
database
/
seeders
/
Editing: GeneralSettingSeeder.php
<?php namespace Database\Seeders; use App\Enums\GeneralSettingEnum; use App\Models\GeneralSetting; use Illuminate\Database\Seeder; use Spatie\MediaLibrary\MediaCollections\Exceptions\FileDoesNotExist; use Spatie\MediaLibrary\MediaCollections\Exceptions\FileIsTooBig; class GeneralSettingSeeder extends Seeder { public function run(): void { $gs = GeneralSetting::query()->create([ 'title' => [ "ar" => "روابط", "en" => "Links" ], "description" => [ "ar" => "روابط", "en" => "Links" ], "address" => [ "ar" => "السعوددية", "en" => "Suadi arabia" ], "first_email" => "admin@admin.com", "first_phone" => "+201201192460", "whatsapp_phone" => "+201201192460", "facebook_link" => "https://facebook.com", "twitter_link" => "https://twitter.com", "instagram_link" => "https://instagram.com", "linkedin_link" => "https://linkedin.com", "snapchat_link" => "https://snapchat.com", "tiktok_link" => "https://tiktok.com", "fcm_key" => "AAAA0R-TT9g:APA91bG6JToV-ifuxs9HlxEsG8x95WDlAsGMfW2k_KoNDJQwYKlytpQuGzWtOOmf3Sg_rW1y-fqJrLYy_28y_l8SSUhwbW-tHEoJdmh70llR6AMOq8tRrl972CIHz8pil0d8vOjPBqY0", "firebase_api_key" => "AIzaSyAXSeGnyZhDQxxBo6APmBYtBiIbqnQSi0U", "firebase_auth_domain" => "links-917ce.firebaseapp.com", "firebase_database_url" => "https://links-917ce-default-rtdb.firebaseio.com", "firebase_project_id" => "links-917ce", "firebase_storage_bucket" => "links-917ce.appspot.com", "firebase_messaging_sender_id" => "898177912792", "firebase_app_id" => "1:898177912792:web:8778be0f77d04b4962acad", ]); try { $gs->addMedia(public_path("front/assets/Logo.png"))->preservingOriginal()->toMediaCollection(GeneralSettingEnum::LOGO->value); $gs->addMedia(public_path("front/assets/Logo.png"))->preservingOriginal()->toMediaCollection(GeneralSettingEnum::DEFAULT_USER_IMAGE->value); } catch (FileDoesNotExist | FileIsTooBig $e) { $this->command->error($e->getMessage()); } } }
SAVE
CANCEL