All configuration files of Laravel framework stored in the app/config directory.
so if we need to create custom configuration values it would be better to keep separate our custom configuration in custom file.
Class form or html not found in Laravel 5
Recently i am working with new laravel 5 and found there is more changes or you can say it’s whole rebuild new version.
Call a function dynamically in php
To call a function in php basically we use function or method name to call. like functionname(), But there is different way to Call a function dynamically in php.
Login without a password is forbidden by configuration (see AllowNoPassword) in ubuntu
Just upgraded ubuntu to 15.04 and checked my all config is as it is. Found all is ok Then i started my phpmyadmin and found error
How to create eloquent model in laravel 5
The model contains your application’s logic and rules or you can say keeping application’s database interactions.
Connect multiple databases in laravel
Working with databases and running queries is simple in laravel. Also you can easily work with connect multiple databases in laravel.
Create Layout in laravel using blade templating
We really need template in our any type of site like divide layout in footer, header, middle. called layout or templating.
Install laravel via laravel installer windows
Laravel 5 has new method to install via laravel installer on all operating systems like windows, ubuntu, mac etc and for xampp or wamp.
How to include css and js in Laravel 5
It’s a basic need to include external or internal css and js in our application. Also laravel 5 has many ways to include css and js in application.
Custom form validation in codeigniter
codigniter have most of form validations inbuilt but sometime we need to apply our own or custom validation on form fields like mobile, email etc. In codeigniter we can easily apply our custom validation