@extends('frontend.layouts.index') @section('content')
@forelse($downloads as $doc)
  • {{ $doc->title }}
    Published on : {{ date('d-m-Y', strtotime($doc->check_date)) }}

    {!! \Illuminate\Support\Str::limit($doc->description, 600) !!} see more

@empty
  • {{ Session::get('lang') == 'english' ? 'Not published yet !!!' : trans('message.not-published-yet') }}

@endforelse
{{ $downloads->links() }}
@include('frontend.includes.aside')
@endsection