@extends('site.layouts.app') @section('title','File Cloud | Dashboard') {{-- SEO Start --}} @section('meta_description', 'This is the description for SEO') @section('meta_keywords', 'SEO, Keywords, Web Development') @section('meta_author', 'John Doe') {{-- SEO End --}} @section('content')
@foreach ($folders as $folder) @if ($folders === 0)

No folders or media created.

@endif

{{-- data-bs-parent="#accordionFlushExample" --}}
@if ($folder->children->isNotEmpty()) @include('site.web.folder_content', ['subfolders' => $folder->children]) @elseif($folder->children->isEmpty())

No folders created

@endif {{-- Media links start --}} @foreach ($folder->media as $file) @endforeach {{-- Media links end --}}
@endforeach
{{--
@foreach ($media as $file) @endforeach
--}} {{-- Pricing model start --}} {{--Model Pricing start --}} @foreach ($folders as $folder) @foreach ($folder->media as $file) @endforeach @endforeach {{--Model Test end --}} {{-- Pricing model end --}} @endsection