If you want to use a custom Class (may be your own vendor or library) inside a view template, you just use it like any other places using the namespace. Like one of my templates has this in the top:
Tag: Laravel
Laravel undocumented conventions: Validation Rules
In this article you will find all the undocumented concepts of Laravel Validation Rules.
Laravel 5 Configurations in AWS Elastic Beanstalk
A good one for laravel on beanstalk. If you are experiencing composer and artisan config.
I’m working on a new project that is running an API using Laravel 5. We’re also hosting it on Amazon’s Elastic Beanstalk service, which gives us great scaling capabilities on the fly. However, since new instances of your application can be added/removed on the fly, setting your configuration requires a little more tweaking than the base install provides.
View original post 739 more words
Laravel 5.1 Pass middleware parameters as array
Great functionality!
Laravel has added support for middleware parameter since version 5.1 . So it is nice that we can pass middleware parameter from Routes.php or from controller. Let’s see an example.
or in controller constructor
and in middleware handle function you can catch argument which is passed as mentioned below:
View original post 116 more words
Laravel PHPUnit Test Uses production configuration by Default
I came across an interesting problem today. I was Using laravel’s PHPUnit test framework to test a Eloquent class in my local environment. When I ran simple tests, I got that laravel eloquent find i was always returning null. Printing query log and running them was not helping.