Laravel Interview Questions

Top laravel interview questions and answers.

  • Home
  • Blog
  • Laravel Questions
  • Mysql Questions
  • Privacy Policy
  • Contact me
Introduction to Errors & Logging in Laravel 5.4

Introduction to Errors & Logging in Laravel 5.4

Laravel Scots May 31, 2017

Introduction In software/ web development Error logging plays a vital role in the maintenance and debugging process of application or ...

Read More
Generating Twitter Consumer Key, Consumer Secret, Acess token, Access Token Secret

Generating Twitter Consumer Key, Consumer Secret, Acess token, Access Token Secret

Laravel Scots May 30, 2017

Step by Step guide to generate Twitter API key and Secret. In order to interact with Twitter services via API, we need to get Twitter API...

Read More
Difference between  --prefer-dist and --prefer-source options in composer

Difference between --prefer-dist and --prefer-source options in composer

Laravel Scots May 30, 2017

While installing a PHP package via composer two ways of downloading a package i.e source and dist . For stable version of packages by de...

Read More
Non-static method Illuminate\Http\Request::all() should not be called statically

Non-static method Illuminate\Http\Request::all() should not be called statically

Laravel Scots May 29, 2017

This issue was generated when we are calling a non-satic method of Illuminate\Http\Request class , To resolve the issue, Please use the F...

Read More
Installing Laravelcollective/html package in laravel 5.4

Installing Laravelcollective/html package in laravel 5.4

Laravel Scots May 28, 2017

In order to use form helpers in Laravel 5, you need to install Laravelcollective/html package. Laravel's Laravelcollective/html packag...

Read More
Rollback all migrations in Laravel

Rollback all migrations in Laravel

Laravel Scots May 27, 2017

In order to rollback/ remove your all migrations in Laravel, use below artisan command. php artisan migrate:reset

Read More
Laravel's tap() helper

Laravel's tap() helper

Laravel Scots May 27, 2017

Laravel's tap() is global helper function , that is used for improving the Laravel framework’s declarative capabilities.Tap() functi...

Read More
Creating Custom helpers in Laravel 5.4

Creating Custom helpers in Laravel 5.4

Laravel Scots May 26, 2017

In this post, I going to show you how to create custom helpers in Laravel. Laravel Helpers are PHP functions that written to perform sp...

Read More
Generating controller with resources via artisan command

Generating controller with resources via artisan command

Laravel Scots May 24, 2017

In order to generate a controller in laravel with CRUD resource below artisan command is used php artisan make:controller PhotoController ...

Read More
Explain findorFail method in Laravel ?

Explain findorFail method in Laravel ?

Laravel Scots May 23, 2017

Sometimes you may wish to throw an exception if a specific record is not found. To do this, you may use the findOrFail method.in Laravel f...

Read More
What does the make() method do in Laravel?

What does the make() method do in Laravel?

Laravel Scots May 23, 2017

Laravel's make method is used to create an instance of a class or interface.While creating an instance with make method Laravel will ...

Read More
Installing soap module on PHP 7 ubuntu

Installing soap module on PHP 7 ubuntu

Laravel Scots May 19, 2017

Below are steps to install Soap module in PHP 7 on Ubuntu . Command to check Soap is installed or not. apt-cache search php | grep -i s...

Read More
Command to disable and enable a service or module in php on ubuntu

Command to disable and enable a service or module in php on ubuntu

Laravel Scots May 19, 2017

Many times we have to disable a PHP 5 service on Ubuntu.You can use below commands to enable / disable a PHP 5 service on Ubuntu Server. ...

Read More
Fixing syntax error or access violation 1071 specified key was too long max key length is 767 bytes

Fixing syntax error or access violation 1071 specified key was too long max key length is 767 bytes

Laravel Scots May 14, 2017

Fixing syntax error or access violation 1071 specified key was too long max key length is 767 bytes [Illuminate\Database\QueryException] ...

Read More
Sending data using redirect in Laravel

Sending data using redirect in Laravel

Laravel Scots May 14, 2017

You can send data using redirects in Laravel by using below code //Sending data $data=['id'=>1,'name'=>'test...

Read More
Retriving requested path in Laravel 5.4

Retriving requested path in Laravel 5.4

Laravel Scots May 13, 2017

How can you retrieve requested path in Laravel. You can retrieve requested path in controller by using path() method of Laravel Request ...

Read More
How to configure database in Laravel

How to configure database in Laravel

Laravel Scots May 13, 2017

Configuring Database in laravel 5.4. Laravel Provides simple steps to connect with various Databases. Currently Laravel supports four datab...

Read More
Read and Write Cookie in laravel 5.4

Read and Write Cookie in laravel 5.4

Laravel Scots May 12, 2017

Setting and getting cookie in Laravel 5.4 Hi Guys, in this post we are going to see how to read and write cookies in Laravel 5.4. In Lara...

Read More
How to resolve phpunit/phpunit 5.7.8 requires ext-dom * error while installing Laravel 5.4

How to resolve phpunit/phpunit 5.7.8 requires ext-dom * error while installing Laravel 5.4

Laravel Scots May 09, 2017

Installing php-xml extension on ubuntu based on php version If you are facing "phpunit/phpunit 5.7.8 requires ext-dom *" error a...

Read More
Installing Memcached on PHP 5

Installing Memcached on PHP 5

Laravel Scots May 03, 2017

Below are steps to install Memcached server for laravel To Install Memcached on server run below commands on your terminal or command Prom...

Read More
Changing storage path permission in laravel

Changing storage path permission in laravel

Laravel Scots May 03, 2017

Fixing Permission denied Error in Laravel Sometime you got Permission denied error in Laravel. The error was caused because Laravel tries ...

Read More
Getting and setting session in Laravel

Getting and setting session in Laravel

Laravel Scots May 02, 2017

Sessions in Laravel Session :-As HTTP is state protocol.To maintain states on server and share data across multiple pages PHP session are...

Read More
Newer Posts Older Posts Home
Subscribe to: Posts ( Atom )

Search This Blog

Other Links

  • Core php interview questions and answers
  • Cakephp interview questions
  • Codeiginator interview questions
  • Phalcon interview questions
  • Laravel interview questions
  • Slim framework interview questions
  • Zend Framework interview questions
  • Yii 2 interview questions
  • Symfony interview questions

Popular

  •  Laravel Interview questions and answers
    Laravel Interview questions and answers
  • What is reverse routing in laravel
    What is reverse routing in laravel
  • Laravel advanced interview questions and answers
    Laravel advanced interview questions and answers

Blog Archive

  • ▼  2017 (52)
    • ►  June (6)
    • ▼  May (22)
      • Introduction to Errors & Logging in Laravel 5.4
      • Generating Twitter Consumer Key, Consumer Secret, ...
      • Difference between --prefer-dist and --prefer-sou...
      • Non-static method Illuminate\Http\Request::all() s...
      • Installing Laravelcollective/html package in larav...
      • Rollback all migrations in Laravel
      • Laravel's tap() helper
      • Creating Custom helpers in Laravel 5.4
      • Generating controller with resources via artisan c...
      • Explain findorFail method in Laravel ?
      • What does the make() method do in Laravel?
      • Installing soap module on PHP 7 ubuntu
      • Command to disable and enable a service or module ...
      • Fixing syntax error or access violation 1071 speci...
      • Sending data using redirect in Laravel
      • Retriving requested path in Laravel 5.4
      • How to configure database in Laravel
      • Read and Write Cookie in laravel 5.4
      • How to resolve phpunit/phpunit 5.7.8 requires ext-...
      • Installing Memcached on PHP 5
      • Changing storage path permission in laravel
      • Getting and setting session in Laravel
    • ►  April (10)
    • ►  March (14)

Labels

Access Token Secret (1) Acess token (1) active record implementation (2) benefits of eagar loading (1) Cashier (1) composer (1) Consumer Secret (1) Contracts in laravel (1) Core php (1) crawling content of password protected website (1) curl (1) Database migration in laravel (2) Databases supported Laravel ORM (1) datebetween (1) dependency injection (1) Eloquent (4) Enable curl on PHP 7.0 (1) Errors (2) expressive (1) Facades in laravel (2) featured (3) findorfail (1) Form helpers in Laravel (1) Generating Twitter Consumer Key (1) generating URLs based on route declarations in Laravel (2) Getting file extension in Laravel (1) Illuminate\Support\Facades (1) installing laravel (1) installing php-xml extension on ubuntu based on php version (1) installing SOAP module on php 7 (1) Laravel (2) laravel basic questions (1) Laravel interview questions (4) Laravel views (1) laravel with CRUD resource (1) laravel-interview-questions (3) laravel-interview-questions-and-answers (2) laravel-packages (1) laravel5 (2) Laravelcollective/html package (1) Lumen (1) MVC Design Pattern (1) official packages in laravel (1) Online laravel interview questions (3) Online laravel interview questions and answer (2) Online-laravel interview-questions (2) Passport (1) php micro framework (1) php-micro-framework (2) prefer-dist (1) prefer-source (1) Read and Write Cookie in laravel 5.4 (1) reverse routing (1) Route Grouping in laravel (1) thujohn/twitter package (1) whereBetween (1)

Recent Posts

[4,recent-posts]

Categories

  • Database migration in laravel (2)
  • Enable curl on PHP 7.0 (1)
  • Facades in laravel (2)
  • Laravelcollective/html package (1)
  • active record implementation (2)
  • benefits of eagar loading (1)
  • installing SOAP module on php 7 (1)
  • laravel-interview-questions (3)

Other Links

  • Advanced Laravel questions
  • Angular js questions
  • Core Php questions
  • Installing Laravel 5.4
  • Mysql questions
  • Php phalcon questions
  • Salesforce Questions
  • Top 30 Laravel interview questions
Crafted with by Templatesyard