Пишем хелперы для PEST — улучшаем читабельность и уменьшаем объем тестов
#english
https://nunomaduro.com/writing-helpers-in-pest/
#english
https://nunomaduro.com/writing-helpers-in-pest/
Nuno Maduro
Writing helpers in Pest
In this article, we are going to check how can you write custom helpers to improve readability and reduce the amount of code of your test suite
Делаем элегантный троттлинг любого метода в классе
#english
https://medium.com/@DarkGhostHunter/laravel-throttling-any-method-class-elegantly-81f12168b163
#english
https://medium.com/@DarkGhostHunter/laravel-throttling-any-method-class-elegantly-81f12168b163
Medium
Laravel: Throttling any method class elegantly
You only need one magic method
Использование стека TALL вместе с пакетом Event Sourcing
#english
https://www.juststeveking.uk/embracing-the-tall-stack-with-event-sourcing-an-adventure-into-the-unknown/
#english
https://www.juststeveking.uk/embracing-the-tall-stack-with-event-sourcing-an-adventure-into-the-unknown/
Laravel: создание компонентов многократного использования
#english
https://www.thisprogrammingthing.com/what-the-f-ck-is-with-all-the-artisan-commands-make-component/
#english
https://www.thisprogrammingthing.com/what-the-f-ck-is-with-all-the-artisan-commands-make-component/
Thisprogrammingthing
Creating Reusable Bootstrap Elements With Laravel's Make:Component
Bootstrap is a good system for getting an application’s layout started and it comes with lots of helpful user interface elements that we can use in our appli...
Обрабатываем исключение ModelNotFoundException глобально
#english
https://navcodes.dev/blog/laravel-model-not-found-exception/
#english
https://navcodes.dev/blog/laravel-model-not-found-exception/
Делаем систему видеозаписи с помощью Laravel, Vue и Videojs-record
#english
https://medium.com/@vivekdhumal/how-to-make-a-video-recorder-using-videojs-record-vue-and-laravel-c586fed455bd
#english
https://medium.com/@vivekdhumal/how-to-make-a-video-recorder-using-videojs-record-vue-and-laravel-c586fed455bd
Подробное руководство по использованию Soft Deletes в Laravel
«Мягкое удаление» — когда данные из базы не удаляются, а только помечаются как удаленные.
#english
https://www.thisprogrammingthing.com/2020/Working-With-Laravels-SoftDelete-Trait/
«Мягкое удаление» — когда данные из базы не удаляются, а только помечаются как удаленные.
#english
https://www.thisprogrammingthing.com/2020/Working-With-Laravels-SoftDelete-Trait/
Thisprogrammingthing
Working With Soft Deletes in Laravel 8 and 9 (By Example)
The annoying thing about deleting data from a database is that it’s gone forever. We can’t even look at the data to see if we needed it because it’s gone. ...
Laravel+Twilio: Пишем WhatsApp-бота для для конвертации валют
#english
https://www.twilio.com/blog/build-whatsapp-currency-conversion-bot-twilio-laravel
#english
https://www.twilio.com/blog/build-whatsapp-currency-conversion-bot-twilio-laravel
Локализация кастов в Laravel на примере часового пояса пользователя
#english
https://james.brooks.page/blog/localized-datetime-casting-in-laravel/
#english
https://james.brooks.page/blog/localized-datetime-casting-in-laravel/
james.brooks.page
Localized Date Time Casting In Laravel | James Brooks
Software Developer from Staffordshire, United Kingdom
Улучшенный способ создания трейтов для тестов
#english
https://medium.com/@SlyFireFox/laravel-tips-making-your-own-trait-hooks-for-tests-the-better-way-5eab2f78a0b1
#english
https://medium.com/@SlyFireFox/laravel-tips-making-your-own-trait-hooks-for-tests-the-better-way-5eab2f78a0b1
Medium
Laravel Tips: Making your own trait ‘hooks’ for tests (the better way)
I originally wrote Laravel Tips: Making your own trait ‘hooks’ for tests last year in March, which honestly feels like a lifetime ago with…
Разработка через тестирование (TDD): пишем RESTful API для управления публикациями
#english
https://medium.com/@armin.abbasi.alt/using-tdd-to-create-a-restful-api-with-laravel-7-x-3f82b7a1283e
#english
https://medium.com/@armin.abbasi.alt/using-tdd-to-create-a-restful-api-with-laravel-7-x-3f82b7a1283e
Medium
Using TDD to Create a RESTful API with Laravel 7.x
When I was learning about writing tests I couldn’t find a cohesive tutorial that takes you through all steps of the project implementation…
Laravel + Внедрение зависимостей: Реализуем гибкую корзину для эл.магазина. Если пользователь залогинен, то она будет использовать БД, а если нет — сессии.
#english
https://medium.com/@mwakalingajohn/laravel-7-dependency-injection-cart-implementation-in-an-ecommerce-website-service-container-b0222f8cecd4
#english
https://medium.com/@mwakalingajohn/laravel-7-dependency-injection-cart-implementation-in-an-ecommerce-website-service-container-b0222f8cecd4
Medium
Laravel 7 + Dependency Injection: Cart implementation in an eCommerce website, Service Container to the rescue
How I used service container to create a flexible cart that uses database or session implementation depending on user authentication state…