“Laravel obtenga una URL usando el nombre” Código de respuesta

Cómo obtener URL en Laravel

// Get the current URL without the query string...
echo url()->current();

// Get the current URL including the query string...
echo url()->full();

// Get the full URL for the previous request...
echo url()->previous();
Mohamad

URL de uso de Laravel

use Illuminate\Support\Facades\URL;

echo URL::current();
NachooCh

Laravel obtenga una URL usando el nombre

$url = route('routeName');

//if there is a param:
$url = route('routeName', ['id' => 1]);

https://laravel.com/docs/5.1/helpers#method-route
Fragile Fish

Respuestas similares a “Laravel obtenga una URL usando el nombre”

Preguntas similares a “Laravel obtenga una URL usando el nombre”

Más respuestas relacionadas con “Laravel obtenga una URL usando el nombre” en PHP

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código