@extends('backend.layouts.main') @section('title') Download Management @endsection @section('content')

Downloads List

@foreach ($downloads as $download) @endforeach
S.N. Name File Display Order Status Actions
{{ $loop->iteration }} {{ $download->name_en }} @if ($download->file) Download @else No file @endif {{ $download->display_order }} @if ($download->is_published) Published @else Draft @endif
@endsection @section('scripts') @endsection