@extends('adminlte::page') @section('title', 'Downloads Management') @section('content_header') @stop @section('content')

Downloads Management

List of Downloads

@if(session('success')) @endif @if(session('error')) @endif
@foreach($downloads as $value) @endforeach
ID Download Type Download Name Download File Status Actions
{{ $value->id }} @if($value->download_type == 0) Association of Articles @elseif($value->download_type == 1) Tolly Birds and Trees @else Unknown Type @endif {{ $value->file_name }} @if($value->file_name) @else No PDF File @endif @if($value->status == 1) Active @else Inactive @endif
Edit       {{-- Toggle Status       --}}
@csrf @method('DELETE')
ID Download Type Download Name Download File Status Actions
@stop @section('js') @stop