Файловый менеджер - Редактировать - /home/clickysoft/public_html/travel-guru.clickysoft.net/database/seeders/DestinationSeeder.php
Назад
<?php namespace Database\Seeders; use App\Models\Destination; use Illuminate\Database\Seeder; use Illuminate\Support\Facades\Http; class DestinationSeeder extends Seeder { /** * Run the database seeds. */ public function run(): void { $baseUrl = env('APP_URL') . '/destination'; $destinations = [ [ 'title' => 'North America', 'slug' => 'north-america', 'short_description' => 'Discover the diverse continent of North America, known for its varied landscapes from bustling cities to serene national parks and rich cultural experiences.', 'status' => 1, 'featured_image' => 'na1.png', 'slider_image' => 'banner-slider.png', ], [ 'title' => 'South America', 'slug' => 'south-america', 'short_description' => 'Explore South America’s vibrant cultures, from the Amazon rainforest and ancient Inca ruins to the lively cities of Buenos Aires and Rio de Janeiro.', 'status' => 1, 'featured_image' => 'na2.png', 'slider_image' => 'banner-slider.png', ], [ 'title' => 'Africa', 'slug' => 'africa', 'short_description' => 'Experience the wonders of Africa, from the majestic wildlife of the Serengeti and the stunning landscapes of the Sahara to the rich history and vibrant cultures across the continent.', 'status' => 1, 'featured_image' => 'na3.png', 'slider_image' => 'banner-slider.png', ], [ 'title' => 'Argentina', 'slug' => 'argentina', 'short_description' => 'Discover Argentina’s diverse attractions, from the breathtaking landscapes of Patagonia and the vibrant culture of Buenos Aires to the stunning Iguazu Falls and wine regions of Mendoza.', 'status' => 1, 'featured_image' => 'na4.png', 'slider_image' => 'banner-slider.png', ], [ 'title' => 'Australia', 'slug' => 'australia', 'short_description' => 'Explore Australia’s unique natural wonders, from the Great Barrier Reef and the Outback to the cosmopolitan cities of Sydney and Melbourne, offering a mix of adventure and relaxation.', 'status' => 1, 'featured_image' => 'na5.png', 'slider_image' => 'banner-slider.png', ], [ 'title' => 'Europe', 'slug' => 'europe', 'short_description' => 'Journey through Europe’s rich tapestry of history and culture, from the ancient ruins of Rome and the artistic heritage of Paris to the stunning architecture of Prague and the scenic beauty of the Alps.', 'status' => 1, 'featured_image' => 'na6.png', 'slider_image' => 'banner-slider.png', ], [ 'title' => 'Asia', 'slug' => 'asia', 'short_description' => 'Explore Asia’s diverse cultures and landscapes, from the bustling streets of Tokyo and the historical temples of Bangkok to the serene landscapes of Bali and the vibrant markets of Delhi.', 'status' => 1, 'featured_image' => 'na7.png', 'slider_image' => 'banner-slider.png', ], ]; foreach ($destinations as $destinationData) { $destination = Destination::create([ 'title' => $destinationData['title'], 'slug' => $destinationData['slug'], 'short_description' => $destinationData['short_description'], 'status' => $destinationData['status'], ]); $destination->addMediaFromUrl("{$baseUrl}/{$destinationData['featured_image']}") ->toMediaCollection('featured_image'); // Process the slider images for ($i = 0; $i < 5; $i++) { $sliderImageUrl = "{$baseUrl}/{$destinationData['slider_image']}"; $destination->addMediaFromUrl($sliderImageUrl) ->toMediaCollection('sliders'); } } } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка