Новости 512 — Выпуск №38 (09.02 — 15.02) – #SelectedArticles

by published on Релиз React 16.8.2 — http://bit.ly/2GqUh3U Релиз Laravel 5.7.26 — http://bit.ly/2BzUZI9 Релиз Django 2.0.13 — http://bit.ly/2BEpUDe. from Tigo Source https://soundcloud.com/csssr/novosti-512-vypusk-38-0902-1502

Laravel API Tutorial: How to Build and Test a RESTful API – #SelectedArticles

With the rise of mobile development and JavaScript frameworks, using a RESTful API is the best option to build a single interface between your data and your client. Laravel is a PHP framework developed with PHP developer productivity in mind. from Tigo Source https://www.toptal.com/laravel/restful-laravel-api-tutorial

alkhachatryan/encryptable – Laravel package to encrypt the database columns and tables

GitHub page https://github.com/alkhachatryan/encryptable

Laravel package to encrypt / decrypt the database tables / columns

Installation

Via Composer

$ composer require alkhachatryan/encryptable

Usage

class User extends Model
{
    use Encryptable;

    /**
     * Fillable columns
     */
    protected $fillable = ['name', 'email', 'password'];

    /**
     * Columns which should be encrypted
     */
    protected $encryptable = ['name', 'email'];
}

 

Zend Framework/Homestead Integration – #SelectedArticles

Last year, we wrote about using Laravel Homestead with ZF projects. Today, we contributed some changes to Homestead to simplify setting it up to serve Apigility, Expressive, and Zend Framework projects. from Tigo Source https://framework.zend.com/blog/2018-05-16-homestead.html

Back to Top