All Projects → TBlindaruk → Laravel Certification Preparing

TBlindaruk / Laravel Certification Preparing

Course project for docker

Docker

Project run

$ docker-compose up -d

Status check

$ docker-compose ps

Log in to container

$ docker exec -ti <CONTAINER_NAME> bash 

CONTAINER_NAME for server = courseprojectdocker_todo-server_1

Laravel cache clear

Clear Laravel configuration cache. You can cache the configuration files in Laravel using

$ php artisan config:cache  

There's also a way to clear the cache

$ php artisan cache:clear  

But, this won't clear the configuration cache. To do that you need to use

$ php artisan config:clear  

Certification question

https://certification.laravel.com/prepare/

certification topics with explanation

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].