Laravel

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
Контейнеризация приложения 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 Deploy Laravel 7 and MySQL on Kubernetes using Helm — step-by-step Docker tutorial on Progressive Robot

How To Deploy Laravel 7 and MySQL on Kubernetes using Helm

In this guide, you will create a Laravel PHP application, build your app into a Docker image, and deploy that image to a Kubernetes cluster using the LAMP Helm chart. Next, you’ll set up an Ingress controller to add SSL and a custom domain name to your app. When completed, you will have a working Laravel application connected to a MySQL database that is running on a Kubernetes cluster.

Read more
How To Create Web Notifications Using Laravel and Pusher Channels — step-by-step Programming tutorial on Progressive Robot

How To Create Web Notifications Using Laravel and Pusher Channels

Many web applications include an in-app notification system that will notify you instantly when someone carries out an action related to you or your account. On Facebook, you will be notified when someone likes your status, or when someone comments on your profile. This tutorial will guide you through replicating this functionality by creating a web-based notification system using [Laravel](https://laravel.com) and [Pusher](https://pusher.com).

Read more
How To Get Total Result Count in Laravel Eloquent — step-by-step Programming tutorial on Progressive Robot

How To Get Total Result Count in Laravel Eloquent

When working with database query results, it is often useful to obtain only the total number of rows in a result set, instead of pulling the full dataset content with a regular query. Eloquent offers a few different aggregate methods that return a scalar value instead of an Eloquent object, such as count(), max(), and sum(). In this part of the series, you’ll update the main application view to show the total number of links in each list, using the count() method.

Read more
CHAT