Home  >  Article  >  PHP Framework  >  Laravel - Action URL

Laravel - Action URL

WBOY
WBOYOriginal
2024-08-27 10:51:41393browse

Laravel 5.7 introduces a new feature called “callable action URL”. This feature is similar to the one in Laravel 5.6 which accepts string in action method. The main purpose of the new syntax introduced Laravel 5.7 is to directly enable you access the controller.

The syntax used in Laravel 5.6 version is as shown −

<?php
$url = action(&#39;UserController@profile&#39;, [&#39;id&#39; => 1]);

The similar action called in Laravel 5.7 is mentioned below −

<?php
$url = action([PostsController::class, &#39;index&#39;]);

One advantage with the new callable array syntax format is the feature of ability to navigate to the controller directly if a developer uses a text editor or IDE that supports code navigation.

The above is the detailed content of Laravel - Action URL. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:Laravel - Dump ServerNext article:None