@extends('layouts.dashboard') @section('template_title') Routing Information @endsection @section('header') Routing Information @endsection @section('breadcrumbs')
  • {{ trans('titles.app') }} chevron_right
  • Routes List
  • @endsection @section('content')

    @if (count($routes) === 1) {{ count($routes) }} Route Total @elseif (count($routes) > 1) {{ count($routes) }} Total Routes @else No Routes ?!? @endif

    @foreach ($routes as $route) @endforeach
    URI Name Prefix Method
    {{ $route->uri }} {{ $route->getName() }} {{ $route->getPrefix() }} {{ $route->getActionMethod() }}
    @include('partials.mdl-highlighter') @include('partials.mdl-search')
    @endsection @section('footer_scripts') @include('scripts.mdl-datatables') @include('scripts.highlighter-script') @endsection