@extends('layouts.admin-main')
@section('content')
# |
{{ __('message.name') }} |
{{ __('message.order') }} |
{{ __('message.created date') }} |
{{ __('message.action') }} |
@foreach ($sectors as $index => $sector)
{{ $index + 1 }} |
{{ $sector->name }} |
{{ $sector->order }} |
{{ $sector->created_at->format('d/m/Y H:i') }} |
{{-- --}}
|
@endforeach
{{ $sectors->appends($_GET)->links() }}
@endsection
@section('scripts')
@endsection
@section('meta')
{{ __('message.sectors') }} - {{ config('app.name', 'Dashboard') }}
@endsection