Showing posts with label artisan command. Show all posts
Showing posts with label artisan command. Show all posts

Sunday, January 21, 2018

Laravel 5.5 error No application encryption key has been specified.

This morning when i clone one of repository on my github (this repo is based on laravel 5.5) to another computer, i got an error RuntimeExce...

Sunday, December 10, 2017

Laravel 5.5 error Base table or view already exists

Yesterday when i'm going to create new migration for table called 'articles' i got an error message when i run the php artisan m...

Wednesday, April 5, 2017

php artisan migrate command in Laravel

The ' php artisan migrate ' command lets you run the database migration on your application, but there is more than that, there are ...

Sunday, March 26, 2017

How to exit from php artisan tinker

Some people having difficulty closing/exit from artisan tinker mode, this is also happened to me when i use artisan tinker for the first tim...

Interact with your application using artisan tinker

Another cool feature in laravel is the ability to interact with your application via artisan tinker, using artisan tinker you can execute ph...

Saturday, March 25, 2017

How to create table seeder in Laravel 4.2

Seeding is the technique of filling our database with sample data so we can test and create our applications. It really does make building a...