DeveloperBreeze

Laravel Programming Tutorials, Guides & Best Practices

Explore 51+ expertly crafted laravel tutorials, components, and code examples. Stay productive and build faster with proven implementation strategies and design patterns from DeveloperBreeze.

Using Laravel Config and Localization Based on Site Settings

Tutorial November 16, 2024
php

   php artisan make:migration create_site_settings_table --create=site_settings

In the migration file, add fields for app configuration and localization settings:

Creating Language Files in Laravel

Tutorial November 09, 2024
php

  • Arabic File: resources/lang/ar/messages.php
   <?php
   return [
       'welcome' => 'مرحبًا بكم في موقعنا!',
       'verify_accreditation' => 'أؤكد أنني مستخدم معتمد وأتحمل مسؤولية استخدامي لهذا.',
   ];