Мониторинг с помощью Laravel Telescope на продакшене
https://www.amitmerchant.com/monitor-logs-in-telescope-in-production-environment-in-laravel/
https://www.amitmerchant.com/monitor-logs-in-telescope-in-production-environment-in-laravel/
Amit Merchant - A blog on PHP, JavaScript, and more
Monitor logs in Laravel Telescope in production environment
The Laravel Telescope package is great for debugging your application when you’re working on your application in the local environment. It provides insight into the requests coming into your application, exceptions, log entries, database queries, queued jobs…
Релиз HTTP Dump
Бесплатный сервис от BeyondCode для проверки входящих HTTP-запросов. Сделан на Laravel, можно развернуть на собственном сервере.
https://httpdump.app/
Бесплатный сервис от BeyondCode для проверки входящих HTTP-запросов. Сделан на Laravel, можно развернуть на собственном сервере.
https://httpdump.app/
HTTP Dump - Inspect incoming requests
Inspect your incoming HTTP requests using HTTP dump.
Spatie выложили на гитхаб код сайта «Front Line PHP»
Интересный проект по продаже обучающих материалов.
https://github.com/spatie/front-line-php.com
Интересный проект по продаже обучающих материалов.
https://github.com/spatie/front-line-php.com
Сегодня поговорим о добавлении настроек на уровне пользователя. Есть несколько способов сделать это и мы сначала рассмотрим их, а потом перейдем к выбору, который я сделал в своем приложении Pulse.
https://laravel.demiart.ru/user-settings-in-laravel/
https://laravel.demiart.ru/user-settings-in-laravel/
Уроки Laravel
Пользовательские настройки в приложении | Уроки Laravel
Сегодня поговорим о добавлении настроек на уровне пользователя. Есть несколько способов сделать это и мы сначала рассмотрим их, а потом перейдем к выбору, который я сделал в своем приложении Pulse. Та
Полезные методы FormRequest
https://mhsunny.medium.com/handle-form-data-smartly-with-formrequest-class-of-laravel-b95a1d8da0d1
https://mhsunny.medium.com/handle-form-data-smartly-with-formrequest-class-of-laravel-b95a1d8da0d1
Добавление полей в ответы Laravel API
https://youtu.be/FNU3gYgiEgQ
https://youtu.be/FNU3gYgiEgQ
YouTube
Laravel API Result: Add Fields with Map or Appends
If your API returns a simple list from DB table, but you want to add some extra calculated fields, there are a few ways, let me show you.
My course about Laravel APIs: https://bit.ly/laravel-api-course
- - - - -
Try our Laravel QuickAdminPanel: https:/…
My course about Laravel APIs: https://bit.ly/laravel-api-course
- - - - -
Try our Laravel QuickAdminPanel: https:/…
5 пакетов для создания интернет-магазина
https://pineco.de/5-laravel-e-commerce-packages/
https://pineco.de/5-laravel-e-commerce-packages/
Pine
5 Laravel E-commerce Packages - Pine
In general, building/developing a webshop or an online store is not easy. There are many tasks on our list, and more to come when stepping forward. So it’s good if we do have a starting point and there is a package that we can use already as an online store…
Создаём десктопные уведомления на Laravel+Pusher+Twilio SMS
https://www.twilio.com/blog/build-chrome-desktop-notifications-php-laravel-8-pusher-twilio-sms
https://www.twilio.com/blog/build-chrome-desktop-notifications-php-laravel-8-pusher-twilio-sms
Создаём, тестируем и разворачиваем Laravel-приложение с помощью GitHub Actions
https://www.twilio.com/blog/build-test-deploy-laravel-application-github-actions
https://www.twilio.com/blog/build-test-deploy-laravel-application-github-actions
Релиз Laravel User Activity
https://laravelarticle.com/laravel-user-activity
https://laravelarticle.com/laravel-user-activity
Рефакторинг eloquent-условий в локальные скоупы
https://youtu.be/90xGUIuZsHE
https://youtu.be/90xGUIuZsHE
YouTube
Same Eloquent Where Condition? Refactor into Local Scopes
If you have the same, or very similar, "where" statements in a few places within your project, I suggest you use Local Scopes instead.
Official docs: https://laravel.com/docs/8.x/eloquent#query-scopes
My course "Eloquent: Expert Level" http://bit.ly/eloquent…
Official docs: https://laravel.com/docs/8.x/eloquent#query-scopes
My course "Eloquent: Expert Level" http://bit.ly/eloquent…
Создаём блог на Laravel и Livewire
https://devdojo.com/tnylea/create-a-blog-in-laravel-and-livewire
https://devdojo.com/tnylea/create-a-blog-in-laravel-and-livewire
DevDojo
Create a Blog in Laravel and Livewire
In this tutorial, we are going to walk-through creating a simple blog in Laravel and Livewire. It will be pretty simple and can be used as a starting point for building your blog with these awesome fr...
Статья о том, как я отказался от философии, которой придерживался много лет — пустые классы моделей Eloquent. Я объясню причины, а также прокомментирую пару моментов, которые вам следует знать, если будете использовать этот подход.
https://laravel.demiart.ru/laravel-model-helpers/
https://laravel.demiart.ru/laravel-model-helpers/
Уроки Laravel
Использование хелперов для моделей | Уроки Laravel
Создание вспомогательных методов в Ларавел для Eloquent моделей, в том числе через трейты.
Ограничиваем скорость отправки форм
https://www.amitmerchant.com/throttling-submission-of-form-in-laravel/
https://www.amitmerchant.com/throttling-submission-of-form-in-laravel/
Amit Merchant - A blog on PHP, JavaScript, and more
Throttling submission of form in Laravel
You might face a scenario where you’d want to restrict a user from submitting a form within a certain time limit. i.e to prevent spamming by users.