@extends('admin.layouts.master') @section('pageTitle', 'Manage Shared Directorys') @section('content')
@if($directories) @foreach($directories as $directory) @endforeach @else @endif
{{ __('Type') }} {{ __('File / Directory') }} {{ __('Description') }} {{ __('Creation Date') }} {{ __('Last Modified') }} {{ __('Action') }}
{{ __('Type') }} {{ __('File / Directory') }} {{ __('Description') }} {{ __('Creation Date') }} {{ __('Last Modified') }} {{ __('Action') }}
{{ $directory->name }} {{ $directory->description }} {{ $directory->created_at != '' ? date('d-m-Y', strtotime($directory->created_at)) : ''}} {{ $directory->updated_at != '' ? date('d-m-Y', strtotime($directory->updated_at)) : ''}}   
No record found
@endsection