parsaaghayi-backend/database/seeders/Website/ServiceSeeder.php

64 lines
3.4 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
namespace Database\Seeders\Website;
use Illuminate\Database\Seeder;
use App\Models\Website\Service;
class ServiceSeeder extends Seeder
{
public function run()
{
$services = [
[
'imageSrc' => '/images/ui-ux-vector.svg',
'title' => [
'en' => 'Custom Web Development',
'fa' => 'توسعه وب سفارشی',
],
'description' => [
'en' => 'We create tailored web applications that meet your unique business requirements, utilizing the latest technologies for optimal performance.',
'fa' => 'ما برنامه‌های وب سفارشی را ایجاد می‌کنیم که نیازهای خاص کسب‌وکار شما را برآورده می‌سازد و از آخرین تکنولوژی‌ها برای عملکرد بهینه استفاده می‌کند.',
],
],
[
'imageSrc' => '/images/web-design-vector.svg',
'title' => [
'en' => 'Frontend Development',
'fa' => 'توسعه فرانت‌اند',
],
'description' => [
'en' => 'Our frontend development services focus on crafting engaging, responsive user interfaces that enhance user experience across all devices.',
'fa' => 'خدمات توسعه فرانت‌اند ما بر روی ایجاد رابط‌های کاربری جذاب و پاسخگو تمرکز دارد که تجربه کاربری را در تمامی دستگاه‌ها بهبود می‌بخشد.',
],
],
[
'imageSrc' => '/images/app-design-vector.svg',
'title' => [
'en' => 'Backend Development',
'fa' => 'توسعه بک‌اند',
],
'description' => [
'en' => 'We provide reliable backend development solutions, building robust server-side architectures and APIs to ensure smooth and secure application functionality.',
'fa' => 'ما راه‌حل‌های قابل اعتماد توسعه بک‌اند را ارائه می‌دهیم و معماری‌های سروری و APIهای قوی را برای اطمینان از عملکرد روان و ایمن برنامه ایجاد می‌کنیم.',
],
],
[
'imageSrc' => '/images/graphic-design-vector.svg',
'title' => [
'en' => 'Website Maintenance and Support',
'fa' => 'نگهداری و پشتیبانی وب‌سایت',
],
'description' => [
'en' => 'Our ongoing maintenance and support services keep your website updated, secure, and performing at its best, allowing you to focus on your core business.',
'fa' => 'خدمات نگهداری و پشتیبانی مداوم ما وب‌سایت شما را به‌روز، امن و با بهترین عملکرد نگه می‌دارد تا شما بتوانید بر روی کسب‌وکار اصلی خود تمرکز کنید.',
],
],
];
foreach ($services as $serviceData) {
Service::create($serviceData);
}
}
}