@extends('admin::layouts.master') @section('title','E-SHOP || Documents Page') @section('content')
@lang('partials.list')
@lang('partials.create')
@if(count($documents)>0) @foreach($documents as $download) @endforeach
@lang('partials.s_n') @lang('partials.title') File Type Created At Updated At Action
@lang('partials.s_n') @lang('partials.title') File Type Created At Updated At Action Action
{{$download->id}} {{$download->title}} {{$download->file_type}} {{$download->created_at}} {{$download->updated_at}}
@csrf @method('delete')
@else
@lang('partials.no_records_found')
@endif
@endsection