Laravel – Dump Server, Laravel dump server comes with the version of Laravel 5.7. The previous versions do not include any dump server. Dump server will be a development dependency in…Read More
Laravel – Action URL, Laravel 5.7 introduces a new feature called âcallable action URLâ. This feature is similar to the one in Laravel 5.6 which accepts string in action me…Read More
Laravel – Pagination Customizations, Laravel includes a feature of pagination which helps a user or a developer to include a pagination feature. Laravel paginator is integrated with the query build…Read More
Laravel – Facades, Facades provide a static interface to classes that are available in the application’s service container. Laravel facades serve as static proxies to underlying c…Read More
Laravel – Contracts, Laravel contracts are a set of interfaces with various functionalities and core services provided by the framework.…Read More
Laravel – Ajax, Ajax (Asynchronous JavaScript and XML) is a set of web development techniques utilizing many web technologies used on the client-side to create asynchronous Web…Read More
Laravel – Error Handling, Most web applications have specific mechanisms for error handling. Using these, they track errors and exceptions, and log them to analyze the performance. In th…Read More
Laravel – File Uploading, Uploading Files in Laravel is very easy. All we need to do is to create a view file where a user can select a file to be uploaded and a controller where uploade…Read More
Laravel – Sending Email, Laravel uses free feature-rich library SwiftMailer to send emails. Using the library function, we can easily send emails without too many hassles. The e-mail te…Read More
Laravel – Session, Sessions are used to store information about the user across the requests. Laravel provides various drivers like file, cookie, apc, array, Memcached, Redis, and…Read More