Laravel Framework
How do you test HTTP client calls without hitting the real API?
Laravel Framework
How do you send notifications in Laravel?
Laravel Framework
How do you prevent lazy loading during development in Laravel?
Laravel Framework
What is the purpose of the $fillable and $guarded properties in Eloquent models?
Laravel Framework
What is the difference between bind and singleton in the service container?
Laravel Framework
How do you prevent model events from firing temporarily?
Laravel Framework
How do you count related models efficiently with withCount in Eloquent?
Laravel Framework
How do you define a Factory relationship in Laravel?
Laravel Framework
How do you implement remember-me (persistent login) cookies?
Laravel Framework
How do you manually manage a database transaction?
Laravel Framework
How do you access extra columns on a pivot table in a many-to-many relationship?
Laravel Framework
How do you render Markdown emails with predefined templates?
Laravel Framework
How do you conditionally include a partial in Blade?
Laravel Framework
How do you use cursor to iterate over a large Eloquent result set?
Laravel Framework
What is withoutOverlapping used for in scheduled tasks?
Laravel Framework
How do you validate form requests in Laravel?
Laravel Framework
How do you insert, update, and delete records using Eloquent?
Laravel Framework
How do you handle CSRF token mismatches in SPAs that POST to the same Laravel app?
Laravel Framework
How do you define a route group with shared prefix and middleware?
Laravel Framework
How do you share a variable with all Blade views globally?
Laravel Framework
What is middleware in Laravel?
Laravel Framework
What is the difference between has and whereHas in Eloquent?
Laravel Framework
How do you pass data to a Blade view?
Laravel Framework
What is Laravel Eloquent ORM?
Laravel Framework
How do you prevent a scheduled task from running when a condition is met?
Laravel Framework
How do you create and register custom middleware?
Laravel Framework
How do you add a composite or compound unique index via a migration?
Laravel Framework
How do you send a plain-text or HTML email in Laravel?
Laravel Framework
What is Laravel Sanctum used for?
Laravel Framework
Why should env() never be called outside config files?
Laravel Framework
How do you use Laravel Pint or PHP_CodeSniffer to lint code?
Laravel Framework
What are some commonly used Artisan CLI commands?
Laravel Framework
How do you create an anonymous Blade component?
Laravel Framework
How do you log messages to a channel in Laravel?
Laravel Framework
How do you use the Storage facade to read, write, and delete files?
Laravel Framework
How do you enable automatic scoping of route model bindings by parent?
Laravel Framework
How do you retrieve records matching specific criteria using whereIn and whereBetween?
Laravel Framework
How do you write a custom 404 / 500 error page?
Laravel Framework
How do you stack and push scripts/styles from child Blade templates?
Laravel Framework
How do you schedule an Artisan command to run every minute in production?
Laravel Framework
What is the difference between find, findOrFail, and firstOrFail in Eloquent?
Laravel Framework
What is the difference between Route::get and Route::post and the other HTTP verbs?
Laravel Framework
What are Laravel event subscribers?
Laravel Framework
How do you handle a 404 / ModelNotFoundException globally?
Laravel Framework
How do you use the booted method in an Eloquent model for global setup?