WordPress-Like Blog Laravel 5.6 and AdminLTE 3 (3) – Create Dummy Data
In this third part of creating WordPress-Like Blog using Laravel 5.6 and AdminLTE 3, we will : Create Post model and posts table Prepare some dummy data using database seeder Before we proceed, we need to make sure the database information inside .env file has been properly set according to your database credentials :
1 2 3 4 5 6 |
DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=laravel_adminlte DB_USERNAME=root DB_PASSWORD=root |
Read more about WordPress-Like Blog Laravel 5.6 and AdminLTE 3 (3) – Create Dummy Data[…]