Feed items

  • warning: Declaration of views_handler_argument::init(&$view, &$options) should be compatible with views_handler::init(&$view, $options) in /home/clients/ru/domains/development4web.com/html/sites/all/modules/views/handlers/views_handler_argument.inc on line 48.
  • warning: Declaration of views_handler_filter_boolean_operator::value_validate(&$form, &$form_state) should be compatible with views_handler_filter::value_validate($form, &$form_state) in /home/clients/ru/domains/development4web.com/html/sites/all/modules/views/handlers/views_handler_filter_boolean_operator.inc on line 111.
  • warning: Declaration of views_plugin_row_node_view::options_form(&$form, &$form_state) should be compatible with views_plugin_row::options_form($form, &$form_state) in /home/clients/ru/domains/development4web.com/html/sites/all/modules/views/modules/node/views_plugin_row_node_view.inc on line 35.

Laravel 10.5 Released


Laravel 10.5 introduces a case-sensitive flag for string replacement, empty columns support for insertUsing, a selectResultsets method, and more.
The post Laravel 10.5 Released appeared first on Laravel News.





Migrating symfony.com Search Engine to Meilisearch

Searching Symfony documentation is one of the most important features of
symfony.com. Search is so pervasive for our visitors, that all pages include a
keyboard shortcut to open the search input: Ctrl. + K (or Command+ K).
We also support pressing Shift key twice, similar to the search feature of some IDEs.





Replace Raw Query Calls With Laravel Query Expressions


The Query Expressions package for Laravel replaces raw query calls with expressions. Learn how this package can help you avoid writing database-specific queries.
The post Replace Raw Query Calls With Laravel Query Expressions appeared first on Laravel News.





Pest Architecture Plugin


With the release of PestPHP v2, we can now test the architecture of our applications. In this tutorial, we will walk through how to use this plugin.
The post Pest Architecture Plugin appeared first on Laravel News.





Static Analysis for Laravel Blade Templates


Bladestan adds static analysis in PHPStan for Blade templtes.
The post Static Analysis for Laravel Blade Templates appeared first on Laravel News.





Extending PHP 8.1 enums with attributes


Borrowed from the concept of annotations in other languages, PHP attributes can add powerful functionality to your enums.
The post Extending PHP 8.1 enums with attributes appeared first on Laravel News.