How-to articles, tricks, and solutions about LARAVEL
How do I write to the console from a Laravel Controller?
You can use the Log facade to write to the console from a Laravel controller.
How to alias a table in Laravel Eloquent queries (or using Query Builder)?
To alias a table in a Laravel Eloquent query, you can use the as method on a DB facade.
How to delete multiple records using Laravel Eloquent
You can use the destroy() method in Laravel Eloquent to delete multiple records.
How to get client IP address in Laravel 5+
In Laravel, you can get the client's IP address by using the Request facade's ip method.