How To Install Zend Server 6 on a CentOS 6.4 VPS
Get ready to install Zend Server 6 on a CentOS 6.4 VPS.
Get ready to install Zend Server 6 on a CentOS 6.4 VPS.
Learn how to run Laravel with Nginx and MySQL using Docker Compose. Step-by-step setup for local development with containers.
El autor seleccionó a The FreeBSD Foundation para recibir una donación como parte del programa Write for DOnations. Durante los últimos años, Docker…
CakePHP is a powerful and robust PHP framework built around the Model-View-Controller (MVC) programming paradigm. Here’s part one concerning how to create a small web app 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.
Laravel — это инфраструктура PHP с открытым исходным кодом, включающая инструменты и ресурсы для создания современных приложений PHP. Благодаря полной экосистеме с встроенными функциями популярность Laravel за последние годы…
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.
Laravel Eloquent has native methods to facilitate implementing pagination on database query results. In this part of the series, you’ll learn how to limit the number of results in a Laravel Eloquent query with the `limit()` method, and how to paginate results with the `simplePaginate()` method.
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.
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).