Релиз PhpStorm 2025.2
https://blog.jetbrains.com/phpstorm/2025/08/phpstorm-2025-2-is-now-available/
  
  https://blog.jetbrains.com/phpstorm/2025/08/phpstorm-2025-2-is-now-available/
The JetBrains Blog
  
  PhpStorm 2025.2 Is Now Available | The PhpStorm Blog
  Along with making Laravel Idea free for PhpStorm users, this release brings improvements to the remote development experience, JetBrains AI tools, and more. Download PhpStorm 2025.2 Junie co
❤22
  Создаем свой пакет на PHP
https://habr.com/ru/articles/935544/
  
  https://habr.com/ru/articles/935544/
Хабр
  
  Создаем свой пакет на PHP
  Данная статья рассчитана на тех, кто до этого ни разу не делал пакетов — проектов на голом PHP для своих нужд. Хочу поделиться с вами своим опытом, с которым столкнулся, и предоставить шаблон, который...
❤34
  Using SQLite in production with Laravel
https://stancl.substack.com/p/using-sqlite-in-production-with-laravel
  
  https://stancl.substack.com/p/using-sqlite-in-production-with-laravel
Substack
  
  Using SQLite in production with Laravel
  Handling concurrency
❤10
  Первая информация о Laravel 13
https://nabilhassen.com/laravel-13-new-features-release-date-install-now
  
  https://nabilhassen.com/laravel-13-new-features-release-date-install-now
Nabilhassen
  
  Laravel 13: New Features, Release Date, Install Now
  An early look at Laravel 13 with its release date, new features, and how to install it now. This post will be updated monthly until the official launch.
❤23
  PHP и Laravel дайджест новостей за июль 2025 года
https://habr.com/ru/articles/938764/
https://habr.com/ru/articles/938764/
❤16
  Pulse Boson PHP #1
Boson PHP — это платформа для создания кроссплатформенных настольных приложений, которая позволяет использовать веб-технологии (PHP, JavaScript, HTML, CSS) для создания native-приложений. Она сочетает в себе интерпретатор PHP и движок WebView, что позволяет собирать приложения в единый исполняемый файл для Windows, Linux и macOS.
https://habr.com/ru/articles/944716/
Boson PHP — это платформа для создания кроссплатформенных настольных приложений, которая позволяет использовать веб-технологии (PHP, JavaScript, HTML, CSS) для создания native-приложений. Она сочетает в себе интерпретатор PHP и движок WebView, что позволяет собирать приложения в единый исполняемый файл для Windows, Linux и macOS.
https://habr.com/ru/articles/944716/
❤74
  Inside the Laravel Service Container
https://wendelladriel.com/blog/inside-the-laravel-service-container
https://wendelladriel.com/blog/inside-the-laravel-service-container
❤14
  Forwarded from The Dragon Code News
Часто используемые способы взаимодействия с релейшенами Laravel и их улучшение
1) Первый
2) Второй
3) Третий
1) Первый
Product::query()
- ->with([
- 'attribute' => fn (Builder $query) => $query->select(['id', 'title'])
- ])
- ->whereHas('attribute');
+ ->withWhereHas('attribute:id,title')
2) Второй
Product::query()
- ->whereHas('attribute', fn (Builder $query) => $query
- ->where('id', $id)
- );
+ ->whereRelation('attribute', 'id', $id)
3) Третий
Product::query()
- ->with([
- 'attribute' => fn (Builder $query) => $query->select(['id', 'title'])
- ])
- ->whereHas('attribute', fn (Builder $query) => $query
- ->where('id', $id)
- );
+ ->with('attribute:id,title')
+ ->whereRelation('attribute', 'id', $id)
2❤97