@extends('admin.layout.base') @section('title', 'Documents ') @section('content')
@if(Setting::get('demo_mode') == 1)
** Demo Mode : No Permission to Edit and Delete.
@endif
@lang('admin.document.document')
@lang('admin.document.add_Document') @foreach($documents as $index => $document) @endforeach
@lang('admin.id') @lang('admin.document.document_name') @lang('admin.type') @lang('admin.action')
{{$index + 1}} {{$document->name}} {{$document->type}}
{{ csrf_field() }} @if( Setting::get('demo_mode') == 0) @lang('admin.edit') @endif
@lang('admin.id') @lang('admin.document.document_name') @lang('admin.type') @lang('admin.action')
@endsection