Posts

Laravel CMS and their features

In this tutorial, we are going list top 5 Laravel CMS and their features. Laravel popularity is increasing Day by day. This tutorial helps you to choose a good Laravel CMS for your next Project. Below is the list of top 5 Laravel CMS. OCTOBER CMS Asgard CMS Coster CMS Pyro CMS Quarx CMS #OCTOBERCMS #Asgard #Coster #Pyro #Quarx #Laravel #CMS  https://www.devquora.com/articles/top-cms-in-laravel

How database migration works in Laravel Framework

Laravel migration provides a method for creating the database and it is possible to modify the database. It is one of the most required ones. In Laravel migration you need not worry about the specific SQL syntax, that is creating tables for the database engine. Migration helps you to take back the most recent changes that you have made to a database. Read Full Article from http://www.laravelinterviewquestions.com/2017/11/migration-in-laravel.html
Image
In this tutorial, we are going to create a simple crud application using Vue js and Laravel.We going to use Vue.js 2.x for frontend and Laravel 5.5 for creating our backend web services. Follow below steps to create Crud Application in Laravel 5.5 and Vue Js. Installing Laravel 5.5 Creating Tables and Models Creating Routes and controller Creating views and partials Configuring Vue Js with Laravel 5.5 Installing and configuring Laravel 5.5 Installing Laravel 5.5 If you have not installed Laravel on your server, then run following commands to install and configure Laravel 5.5 on your server composer create-project --prefer-dist laravel/laravel vuelaraveldemo Configuring file permissions Once installation of Laravel framework is complete successfully then you need to provide read-write permission to below folders storage/ bootstrap/cache Run the following command to provide read-write permission sudo chmod -R 777 storage sudo chmod -R 777 bootstrap/cach...

An Introduction to Laravel Framework

Image
An Introduction to Laravel Framework What is Laravel ? Laravel  is one of the most popular web framework based on MVC (Model View Controller) design pattern. It was created by Taylor Otwell.It is free open-source software licensed under the MIT license. The first beta release of Laravel Framework was done June 9, 2011, followed by the Laravel 1 release later in the same month. Initially, Laravel was created to provide a more advanced alternative to the CodeIgniter framework, which does not provide features like built-in user authentication and authorization modules. Read Full Article  http://www.laravelinterviewquestions.com/2017/06/an-introduction-to-laravel-framework.html