@include('shared.message')
@if(count($spaces) == 0)
{{ __('No results found.') }}
@else
{{ __('Name') }}
{{ __('Links') }}
{{ __('Created at') }}
@include('icons.more-horiz', ['class' => 'fill-current w-4 h-4'])
@foreach($spaces as $space)
{{ $space->created_at->diffForHumans() }}
@endforeach
{{ __('Showing :from-:to of :total', ['from' => $spaces->firstItem(), 'to' => $spaces->lastItem(), 'total' => $spaces->total()]) }}
{{ $spaces->onEachSide(1)->links() }}
@endif