@extends($layout) @section('styles') @endsection @section('content')
{{-- --}} @if (isset($folders) && $folders->count() > 0)
{{--
Recent Folders
--}}
@foreach ($folders as $folder) @endforeach {{-- Show all --}}
@if (!($folders->count() > 0 || $videos->count() > 0))

No sub folders found.

@endif @if (!($folders->count() > 0 || $videos->count() > 0))

No sub folders found.

@endif
@else {{--

No sub folders or files found.

--}} @endif
@php $pathSegments = explode('/', request()->path()); $isHomeSubpage = false; if (count($pathSegments) > 1 && $pathSegments[0] === 'home') { // Check if there's something after /home. Might change? $isHomeSubpage = count($pathSegments) > 1; } @endphp @if (strpos(request()->url(), '/home/search') === false) @if (!$isHomeSubpage) @if (auth()->user()->can('upload videos') && auth()->user()->can('upload documents')) @endif @endif @endif
@if (!$isHomeSubpage) @include('partials.videos', ['video' => $videos]) @endif
@endsection @section('script') @endsection