@extends('admin.master') @section('title', __('Custom routes')) @section('content')
@foreach($custom_routes as $custom_route) @endforeach
{{ __('Name') }} {{ __('Views') }} {{ __('Method') }} {{ __('Active') }} {{ __('CSRF') }} {{ __('Updated at') }} {{ __('Actions') }}
{{ ucfirst($custom_route->name) }} {{ $custom_route->views }} {{ mb_strtoupper($custom_route->method) }}
active) checked @endif data-id="{{ $custom_route->id }}" data-status="active" @change="updateStatus($event)">
csrf_protection) checked @endif data-id="{{ $custom_route->id }}" data-status="csrf_protection" @change="updateStatus($event)">
{{ $custom_route->updated_at }}
@if($custom_routes->hasPages())
{{ $custom_routes->appends($base_uri)->onEachSide(1)->links() }} {{ $custom_routes->appends($base_uri)->links('vendor.pagination.simple-semantic-ui') }} @endif
@endsection