Релиз Flysystem 2
Библиотека абстракции для работы с файловой системой, используемая в Laravel. Поддержка второй версии Flysystem появится в Laravel 9, запланированной на конец февраля - начало марта.
https://blog.frankdejonge.nl/a-new-major-version-of-flysystem/
Библиотека абстракции для работы с файловой системой, используемая в Laravel. Поддержка второй версии Flysystem появится в Laravel 9, запланированной на конец февраля - начало марта.
https://blog.frankdejonge.nl/a-new-major-version-of-flysystem/
Frank on Software
A new major version of Flysystem
For those who missed it, a new major version of Flysystem was released on the
24th of November. A new major version allows you break with the past for the
sake of the future, which is exactly what I've done.
For the second version of Flysystem I went back…
24th of November. A new major version allows you break with the past for the
sake of the future, which is exactly what I've done.
For the second version of Flysystem I went back…
Если вы запускаете приложение Laravel чисто как headless API, то будет выгодно отключить HTTP сессии.
https://laravel.demiart.ru/disable-http-sessions-to-speed-up-api/
https://laravel.demiart.ru/disable-http-sessions-to-speed-up-api/
Уроки Laravel
Отключение HTTP сессий для ускорения API | Уроки Laravel
Если вы запускаете приложение Laravel чисто как headless API, то будет выгодно отключить HTTP сессии. Мы это используем в службе мониторинга Oh Dear, где все удаленные сервера, проверяющие аптайм, это
Также зарелизены:
— Laravel 6.20.8, 7.30.1
— Breeze 1.0.1
— Dusk 6.11.0
— Horizon 5.6.3
— Nexmo Notification Channel 2.5.1
— Sail 1.0.1
— Scout 8.5.1
— Vapor UI 1.0.1
— Laravel 6.20.8, 7.30.1
— Breeze 1.0.1
— Dusk 6.11.0
— Horizon 5.6.3
— Nexmo Notification Channel 2.5.1
— Sail 1.0.1
— Scout 8.5.1
— Vapor UI 1.0.1
Релиз Laravel Mix 6
Поддержка webpack 5, плюс множество исправлений и улучшений.
https://github.com/JeffreyWay/laravel-mix/blob/master/CHANGELOG.md
Поддержка webpack 5, плюс множество исправлений и улучшений.
https://github.com/JeffreyWay/laravel-mix/blob/master/CHANGELOG.md
GitHub
laravel-mix/CHANGELOG.md at master · laravel-mix/laravel-mix
The power of webpack, distilled for the rest of us. - laravel-mix/CHANGELOG.md at master · laravel-mix/laravel-mix
Защита потокового видео с Laravel FFmpeg
https://protone.media/nl/blog/encrypted-hls-with-laravel-ffmpeg-protect-your-videos-with-aes-128-encryption
https://protone.media/nl/blog/encrypted-hls-with-laravel-ffmpeg-protect-your-videos-with-aes-128-encryption
Protone Media
Encrypted HLS with Laravel FFMpeg: Protect your videos with AES-128 Encryption | Protone Media
The Laravel FFmpeg package has supported HLS for over four years. It's
a fantastic protocol to provide on-demand, adaptive streaming.
Initially developed by Apple in the early days of iOS, it is now the
most popular streaming format, and it works on Android…
a fantastic protocol to provide on-demand, adaptive streaming.
Initially developed by Apple in the early days of iOS, it is now the
most popular streaming format, and it works on Android…
Несколько свежих Laravel-подкастов
https://laravel-news.com/some-laravel-podcasts-for-your-holiday-break
https://laravel-news.com/some-laravel-podcasts-for-your-holiday-break
Laravel News
Some Laravel Podcasts for your holiday break
As 2020 starts coming to a close you might be taking some time off work and have some spare time. If you are looking to fill some downtime with podcasts here are three new Laravel related episodes that just came out this week that you might want to download…
Тестирование содержимого письма в Laravel 8.18
https://laravel-news.com/testing-mailable-content-in-laravel-8
https://laravel-news.com/testing-mailable-content-in-laravel-8
Laravel News
Testing Mailable Content in Laravel 8
Laravel 8.18.0 added methods to test HTML and plain-text email bodies for mailables. These methods are documented, but I’d like to walk through a simple example to illustrate how useful these can be.
Размышления о Node.js и о том, почему мне следовало остановиться на Laravel
https://dev.to/tylerlwsmith/reflecting-on-a-year-with-node-js-and-why-i-should-have-stuck-with-laravel-e5a
https://dev.to/tylerlwsmith/reflecting-on-a-year-with-node-js-and-why-i-should-have-stuck-with-laravel-e5a
DEV Community
Reflecting on a year with Node.js and why I should have stuck with Laravel
A year ago I made a bet on full-stack JS and switched my focus from Laravel to Node.js. A year later, I found that Node just slowed me down.
Использование темы AdminLTE в Laravel Fortify
https://youtu.be/2lHFnYLTHSI
https://youtu.be/2lHFnYLTHSI
YouTube
How to use AdminLTE theme with Laravel Fortify
Package: https://github.com/laravel/fortify and https://github.com/InfyOmLabs/laravel-ui-adminlte
Official Docs: https://laravel.com/docs/8.x/fortify
Source code https://github.com/shailesh-ladumor/lpt-demo/tree/master/laravel-fortify-demo
Laravel Fortify…
Official Docs: https://laravel.com/docs/8.x/fortify
Source code https://github.com/shailesh-ladumor/lpt-demo/tree/master/laravel-fortify-demo
Laravel Fortify…
Объектно-ориентированное программирование (ООП) является одним из столпов любого языка программирования и одним из самых больших его преимуществ является наследование, а мы можем это использовать для реализации кастомного Blueprint.
https://laravel.demiart.ru/custom-blueprint/
https://laravel.demiart.ru/custom-blueprint/
Уроки Laravel
Кастомный конструктор таблиц | Уроки Laravel
Как сделать кастомную генерацию миграций со своими полями.
Трейт шифрования
https://www.guywarner.dev/laravel-encryptable-trait
https://www.guywarner.dev/laravel-encryptable-trait
Laravel & PHP by Guy Warner
Laravel Encryptable Trait
Note: This post is out of date, Laravel can now do this encryption out of the box without a trait. Please check the update.
In our main repo, we have a lot of MySQL fields that are required to be encrypted. Instead of littering our controllers and vi...
In our main repo, we have a lot of MySQL fields that are required to be encrypted. Instead of littering our controllers and vi...
Загрузка файлов в Livewire 2
https://www.guywarner.dev/livewire-v2-file-upload-tutorial
https://www.guywarner.dev/livewire-v2-file-upload-tutorial
Laravel & PHP by Guy Warner
Livewire V2 File Upload Tutorial
In this tutorial, we'll cover uploading a CSV file in Laravel with Livewire. This tutorial is written with the assumption you know how to get a Laravel app up and that Livewire is already installed.
Step 1
Create a new component and view from the com...
Step 1
Create a new component and view from the com...
Лайк/Дизлайк-система на Laravel+Vue
https://www.positronx.io/how-to-build-laravel-vue-js-like-dislike-system/
https://www.positronx.io/how-to-build-laravel-vue-js-like-dislike-system/
positronX.io
How to Build Laravel 9 Vue JS Like Dislike System
How to create a like and dislike system in the Laravel Vue; also store the like and dislike values in the database based on the user id.
Тестирование Laravel API с помощью PHPUnit
https://auth0.com/blog/testing-laravel-apis-with-phpunit/
https://auth0.com/blog/testing-laravel-apis-with-phpunit/
Auth0 - Blog
Testing Laravel APIs Using PHPUnit
Learn how to test Laravel APIs using PHPUnit.