Laravel 8 Generate Dynamic URL
Good day,
Immediately, i we are going to present you laravel eight generate dynamic URL. This text gives you easy instance of laravel eight generate dynamic URL. you’ll laravel eight generate dynamic URL. On this article, we are going to implement a laravel eight generate dynamic URL.
So let’s comply with few step to create instance of laravel eight generate dynamic URL.
Instance
<?php namespace AppHttpControllers; use IlluminateHttpRequest; use AppModelsProduct; class TestController extends Controller { /** * Write Your Code.. * * @return string */ public operate index() { $product = Product::discover(1); dd(url("/product/{$product->id}")); } }
Output:
"http://localhost:8000/product/1"
Get Present URL:
If no path is supplied to the deal with helper, a IlluminateRoutingUrlGenerator occasion is got here again, enabling you to entry information regarding this URL:
// Get the present URL with out the question string... echo url()->present(); // Get the present URL together with the question string... echo url()->full(); // Get the complete URL for the earlier request... echo url()->earlier();
So,you may generate of these methods may additionally be accessed through the URLfacade:
use IlluminateSupportFacadesURL; echo URL::present();
I hope it can help you…
Komentar
Posting Komentar