Laravel has great localization tools that make it very easy to translate your application into different languages. How can we adapt those tools to tranlsate custom error messages in a custom package?
Laravel
Read More
Homestead version 2 requires more support tooling than version 1, especially on windows. Let's take a look at setting up Homestead 2.0 on a Windows machine for the first time.
Laravel Vagrant
Read More
Single Table Inheritance can be a useful tool in certain situations. Let's look at using Single Table Inheritance in a Laravel application and why we might want to do that.
Eloquent Laravel PHP
Read More
A service provider is a key part of integrating your custom package into a Laravel application. Laravel 5 has more specific requirements for service providers, but it also enables lots of new possibilities for package integration.
Laravel
Read More
Have you ever wanted to automate data entry via email? We can use Laravel Lumen and Mandrill to set up a very simple service for parsing incoming mail and saving important data.
E-Mail Laravel Lumen
Read More
Integrating Codeception with a Laravel 4.* application is not as straight forward as you might hope, especially if you need to mock API calls. Let's take a look at an approach I used recently that solved this problem.
Codeception Laravel Testing
Read More
We can use Laravel's error handling tools to write log entries when users trigger 404 errors. This can help us track down broken links or find other potential problems with the user experience in our Laravel application.
Laravel
Read More
Displaying error messages can be a cumbersome affair, especially if you don't want to use the default message format. Let's use a custom blade directive to simplify how we show validation errors to users.
Blade Laravel
Read More
To use Laravel Passport effectively you need to ensure it is properly configured in your application. Ensuring that this configration also works in a test enviroment can be tricky, depending on your situation. Let's take a look at one possible solution.
Laravel Testing
Read More
Asset versioning helps us ensure that browsers will always use the latest version of our compiled assets when they visit our site. Let's take a look at a strategy for asset versioning in Laravel.
Blade Laravel
Read More