PHP Frameworks

How To Design Template Pages with Twig on a VPS — step-by-step Programming tutorial on Progressive Robot

How To Design Template Pages with Twig on a VPS

Twig is a very good alternative to the PHPTemplate way of building the presentation logic of a web application as it is represents a much cleaner templating experience. In this respect, it comes with a very easy to understand syntax and restricts you from performing dynamic PHP operations in template files.

Read more
Процедура установки и настройки Laravel с помощьтю Nginx на сервере Ubuntu 20.04 — step-by-step Linux tutorial on Progressive Robot

Процедура установки и настройки Laravel с помощьтю Nginx на сервере Ubuntu 20.04

Laravel — это инфраструктура PHP с открытым исходным кодом, включающая инструменты и ресурсы для создания современных приложений PHP. Благодаря полной экосистеме с встроенными функциями популярность Laravel за последние годы…

Read more
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
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
CHAT