@extends('layouts.admin.master') @section('admin_main_body')

File Manager

{{-- Back --}}
Sub Folders
{{--

Parent Folder: {{ $sub_folder_id }}

View All
--}} @if ( !$all_files->isEmpty())

Files in this folder: {{ $sub_folder_id }}

View All
@endif @if ( $all_files->isEmpty())

Database File is Empty In Folder: {{ $sub_folder_id }}

View All
@endif
@if ($all_files == null || $all_files->isEmpty()) No Data Found! @endif @if (!$all_files == null || !$all_files->isEmpty())
@foreach ($all_files as $key => $files) @endforeach
File Name Category File Type Size Date Modified Action
{{ $files->file_name }} {{ $files->description }} {{ $files->file_type }} {{ $files->file_size }} {{ $files->file_name }}
@endif
@endsection