php
Composer
How to debug Artisan with Xdebug?
Xdebug 2
If you are using Xdebug 2 type this command in the terminal:
php -dxdebug.remote_enable=1 -dxdebug.remote_autostart=on -dxdebug.remote_mode=req -dxdebug.remote_port=9000 -dxdebug.remote_host=127.0.0.1 artisan
followed...
Laravel
Extract Untranslated Strings from Laravel Projects using Localizator
Localizator is a small tool for Laravel that gives you the ability to extract untranslated strings from project files. It works using the artisan command line and the provided localize command.
Laravel
How to Run Laravel Using Multiple Database Connections on the Fly
Recently I've found myself in a scenario where I had to run multiple database connections in a single Laravel application. Pretty easy right? There are tons of tutorials online and Eloquent makes...
Recent posts
How to debug Artisan with Xdebug?
Xdebug 2
If you are using Xdebug 2 type this command in the terminal:
php...
Extract Untranslated Strings from Laravel Projects using Localizator
Localizator is a small tool for Laravel that gives you the ability to extract untranslated strings from project files. It works using...
Use Laravel’s default translation strings in JavaScript
JavaScript
Amir - 2
There are many great Laravel packages that offer ways to use Larave's translation strings in front-end, like mariuzzo/laravel-js-localization and thepinecode/i18n, but what...
How to Run Laravel Using Multiple Database Connections on the Fly
Recently I've found myself in a scenario where I had to run multiple database connections in a single Laravel application. Pretty easy...