@extends('frontend.layouts.master') @section('title') Download Center @endsection @section('main-content')
    @if($documents) @foreach($documents as $document)
  • {!!$document->description!!}

    {{$document->title}}

    @if($document->file) Download File @else No File @endif
  • @endforeach @endif
@endsection