@extends('layouts.header') @section('content') @if($menu_obj->parent_id != 1) @endif
@if(count($childrens) > 0) @foreach($childrens as $child) @if($child->type == 'FOLDER')
  {{ $child->text}}
( uploaded by: {{ $child->first_name . " " . $child->last_name }} , at: @if($child->updated_at ) {{ date('d-m-Y h:i A', strtotime($child->updated_at)) }} @else {{ date('d-m-Y h:i A', strtotime($child->created_at))}} @endif )
@else
 {{ $child->file_name}}
( uploaded by: {{ $child->first_name . " " . $child->last_name }} , at: @if($child->updated_at ) {{ date('d-m-Y g:i a', strtotime($child->updated_at)) }} @else {{ date('d-m-Y g:i a', strtotime($child->created_at))}} @endif )
@endif @endforeach @else @endif
@endsection @section('append') @endsection