Comprehensive Laravel Development Guide
Table of Contents
- Initial Setup
- Project Creation
- Development Environment
- Database Operations
- Component Generation
- Localization
- Model and Resource Generation
- Mail Configuration
- Event Handling
- Best Practices
- Common Issues and Solutions
Initial Setup
Environment Configuration
# Add Composer's vendor bin directory to PATH
export PATH=$PATH:$HOME/.config/composer/vendor/bin
System Requirements
-
PHP 8.3 or higher
-
Required PHP Extensions:
sudo apt install php8.3-bcmath -y
Project Creation
There are two methods to create a new Laravel project:
Method 1: Direct Creation
composer create-project laravel/laravel first-app
Method 2: Using Laravel Installer
# Install Laravel installer globally
composer global require laravel/installer
# Create new project
laravel new second-app
Development Environment
Project Setup
cd first-app
composer install && npm install
Starting Development Server
# Standard development server
php artisan serve
# Custom host and port
php artisan serve --host=192.168.85.138 --port=8000
# Development with Vite
composer run dev
Database Operations
Migration Commands
# Create new migration
php artisan make:migration create_users_table
# Run migrations
php artisan migrate
# Reset Database
php artisan db:wipe # Drop all tables
php artisan migrate:fresh # Drop all tables and re-run migrations
php artisan migrate:rollback # Rollback last migration
Default Migrations
Laravel automatically creates:
-
users_table
-
cache_table
-
jobs_table
Component Generation
Provider Generation
# Generate a new service provider
php artisan make:provider RouteServiceProvider
View Components
php artisan make:component layout --view
Localization
Language Setup
# Install language package
composer require laravel-lang/common --dev
# Add new language (e.g., Turkish)
php artisan lang:add tr
Model and Resource Generation
Full Resource Generation
# Generate model with all resources (-a flag)
php artisan make:model Post -a
# This creates:
## - Model
## - Factory
## - Migration
## - Seeder
## - Controller
## - Policy
Route Management
# View all registered routes
php artisan route:list
# Create storage symbolic link
php artisan storage:link
Mail Configuration
# Generate mail class
php artisan make:mail WelcomeMail
Timezone Configuration
# Set timezone in .env
APP_TIMEZONE=Europe/Istanbul
# Clear configuration cache
php artisan config:clear
php artisan optimize:clear
Event Handling
Event and Listener Setup
# Create event
php artisan make:event UserSubscribed
# Create listeners
php artisan make:listener SendSubscriberEmail
php artisan make:listener UpdateSubscribersTable
# Create subscriber table
php artisan make:migration create_subscribers_table
php artisan migrate
Controller Generation
# Create new controller
php artisan make:controller ResetPasswordController
Best Practices
- Always run
php artisan optimize:clear
after changing configuration files - Use migration system for all database changes
- Implement proper event handling for decoupled architecture
- Keep controllers thin and models fat
- Use artisan commands for generating boilerplate code
- Implement proper localization from the start
- Always secure your routes and controllers with proper middleware
Cache Management
# Clear route cache
php artisan route:clear
# Clear application cache
php artisan cache:clear
# Clear config cache
php artisan config:clear
Common Issues and Solutions
- If composer commands fail, try:
- Clearing composer cache
- Updating composer
- Checking PHP version compatibility
- If migrations fail:
- Check database credentials
- Ensure proper database permissions
- Verify migration syntax
- For permission issues:
- Check storage folder permissions
- Verify bootstrap/cache permissions
- Ensure proper .env configuration