13th May 2024

A Beginner’s Guide to Setting Up a Project in Laravel

Laravel is a robust and elegant PHP web application framework that has gained immense popularity among developers for its simplicity, versatility, and powerful features. Over the years, Laravel has become the go-to PHP framework for both big and small projects. Prerequisites: Getting Started with Laravel Before diving into Laravel development, we must ensure we have all the necessary tools and software installed. Here’s what we’ll need: By setting up your development environment with PHP, Composer, and the Laravel Installer (or exploring options like Homestead or Herd), you’ll be well-prepared to embark on your Laravel journey. In the following sections, we’ll go […]
30th March 2019

PHP Framework-Laravel

Laravel is a PHP framework that will drastically improve your productivity. It has been around for quite some time. The first version was released in June of 2011. However, the founder, Taylor Otwell, and his crew are actively improving it. The latest version (5.7), only came out in September of 2018. It runs on PHP 7.1.3 and above. It follows the MVC (Model-View-Controller) pattern which allows for a much-needed separation of concerns in our web applications. Features Of Laravel Eloquent ORM (Object-Relational Mapping) PHP’s implementation of the active record pattern. In simple terms, this pattern allows us to present database tables […]