PHP Frameworks

How To Install and Set Up Laravel with Docker Compose on Ubuntu 20.04 — step-by-step Docker tutorial on Progressive Robot

How To Install and Set Up Laravel with Docker Compose on Ubuntu 20.04

To containerize an application refers to the process of adapting an application and its components in order to be able to run it in lightweight environments known as containers. Such environments are isolated and disposable, and can be leveraged for developing, testing, and deploying applications to production. In this guide, we’ll use Docker Compose to containerize a Laravel application for development on Ubuntu 20.04.

Read more
How To Update Database Records in Laravel Eloquent — step-by-step Programming tutorial on Progressive Robot

How To Update Database Records in Laravel Eloquent

In a previous section of this series, you updated an existing Artisan command in order to support the new lists feature. Although there are commands to insert and delete links, the demo application currently doesn’t have a command to edit existing links. This can be useful to move links between lists, for instance, or update a link description. In this guide, you’ll create a new Artisan command to update existing links in the database.

Read more
Контейнеризация приложения Laravel 6 для разработки с помощью Docker Compose в Ubuntu 18.04 — step-by-step Docker tutorial on Progressive Robot

Контейнеризация приложения Laravel 6 для разработки с помощью Docker Compose в Ubuntu 18.04

Контейнеризация приложения — это процесс адаптации приложения и его компонентов для работы в облегченных средах, называемых контейнерами. Это изолируемые одноразовые среды, которые используются для разработки, тестирования и…

Read more
How To Order Query Results in Laravel Eloquent — step-by-step Programming tutorial on Progressive Robot

How To Order Query Results in Laravel Eloquent

In a previous part of this series, you learned how to obtain database records using the all() method from within an Eloquent model, sorting the resulting collection with the sortDesc() method. In this guide, you’ll learn how to use the orderBy() method to sort results in the database query itself, which offers more flexibility and performance to order query results at the database level.

Read more
How To Use Caching with the Yii Framework To Improve Performance — step-by-step Programming tutorial on Progressive Robot

How To Use Caching with the Yii Framework To Improve Performance

Amongst the many features that the incredible Yii framework offers, a cache management system is something that couldn’t have been missing. Yii framework allows us to save both static data and your SQL/Active Record queries, which -if used wisely- can lead to a lot of page loading time saving. In particular, in this tutorial we are going to learn how to cache Data and Queries.

Read more
CHAT