@extends('admin.layouts.master') @section('title', ucwords(str_replace('-', ' ', $slug)) . ' | Document Requireds') @section('content') @include('admin.page.top-nav')
@include('admin.page.side-nav')
{{-- content --}}

{{ __('Document Required List') }}

@foreach ($documents as $key => $req) @endforeach
{{ __('#') }} {{ __('Title') }} {{ __('Status') }} {{ __('Action') }}
{{ ++$key }} {!! $req->getTranslation('title', 'en') !!} @if ($req->status == 'active') Active @else InActive @endif
@csrf
@endsection