@extends('layouts.backend.app') @section('title','File Search') @section('content')
File Search
@include('backend.settings.sidebar')
{{-- how to use callout --}}
How To Use:

You can upload or delete images and icons here

{{--
--}}
@if($searchResult->count())
@foreach($searchResult as $key => $f) @endforeach
File Name Type Size Mime Type URL Last Modified
{{ $f->original_name }} {{ $f->collection }} {{ filesize_formatted($f->size) }} {{ $f->mime_type }} {{ $f->source }} {{ $f->updated_at->timestamp }}{{ $f->updated_at->diffForHumans() }}
{{ $searchResult->links() }} @else
No file is found.
@endif
@endsection