@extends('backend.layouts.app') @section('title', \App\Http\Helpers\MenuHelper::getPageTitle()) @section('content') @once @push('styles') @endpush @endonce

All Routes

@if(session('success'))

{{ session('success') }}

@endif
Reset
@forelse($routes as $route) @empty @endforelse
#{{ ($routes->currentPage() - 1) * $routes->perPage() + $loop->iteration }} {{ $route->name ?? '-' }} {{ $route->uri }} @if($route->name) @endif @foreach(explode(',', $route->method) as $m) {{ $m }} @endforeach {{ $route->controller ? class_basename($route->controller) : '-' }} @if($route->action){{ $route->action }}@endif {{ strtoupper($route->type) }} @if($route->status) Active @else Inactive @endif
@can('route.update') @endcan @can('route.delete')
@csrf @method('DELETE')
@endcan

No routes found

Click "Generate Routes" to scan and add routes.

{{ $routes->withQueryString()->links('vendor.pagination.custom') }}
@endsection