Posts

Crud in Vue js

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/cache Co...

An Introduction to Lumen Framework

An Introduction to Lumen Framework

Clear cache in laravel 5

Clear cache in laravel 5

Top 100 php interview questions and answers

Top 100 PHP Interview Questions and Answers What  is PHP ?Who is the father of PHP ? Answers : PHP is a web language based on scripts that allows developers to dynamically create generated web pages.Rasmus Lerdorf is known as the father of PHP. What is the difference between $name and $$name? Answers : $name is variable where as $$name is reference variable like $name=Ravi and $$name=Kumar so $Ravi value is Kumar. How can we submit a form without a submit button? Answer :Java script submit() function is used for submit form without submit button on click call document.formname.submit() In how many ways we can retrieve the data in the result set of MySQL using PHP? We can do it by 4 Ways mysql_fetch_r...

Laravel Interview Questions and Answers

Image