Php-Laravel Framework

1. Entirely new directory structure:

Laravel 5.0.1 comes with an entirely new directory structure. Laravel 5.0.1 uses PSR-4 autoloading standards that mean all the classes are fully namespaced now. In this version, config, storage, and database folders are moved from the app folder in the new structure. Additionally. It offers the new resources folder for containing language and template files.

2. Route caching:

Route caching feature speeds up the application route registration. This feature is ideal for such development projects that have large numbers of routes. However, once route caching is turned on, any changes that you make to the application routes will not take effect. Routing caching is generally implemented as a part of the deployment process.

3. Inbuilt Authentication System:

Authentication is very crucial part of any web application because developers are spending the lots of time for coding authentication of any enterprise system. Authentication made simpler with Laravel 5.1, as it comes with inbuilt authentication. Developers only need to configure database, controllers, models to make this system work.

4. Multiple file system support:

Laravel 5 offers great support for multiple file system for that it uses third party package Flysystem to provide support for multiple files. It provides an option for developers to use local or cloud-based storage to provide simple configuration. Moreover, developers can easily set storage options in config/filesystems.php file.

5. Improved method injection:

Method Injection has improved a lot with the Laravel 5.0.1. Until this update, web developers need to demand inversion of control to provide a class instance. But now they can declare the type hinted class instance in the controller method’s signature.

6. Contracts:

contracts are basically a set of interfaces that defines the core services. If developers wants caching in a package, they can easily do that by using Illuminate\Contacts\cache. It allows developers to do cache programming using the concrete cache class without needs to change the package code.
 
Back
Top