I want to check if the current route isn't equal to a specific route in laravel view. How can I do that in Blade ?
my attempt:
@if(Route::current() != Route('places.show'))
<td><a href="/admin/places/display/{{$order->place->id}}">{{ $order->place->name }}</a></td>
@endif