@extends('layouts.user') @section('head') @endsection @section('content')

{{!empty($recovery) ?__('Recovery Spaces') : __("Manage Spaces")}} @if(Auth::user()->hasPermissionTo('space_create')&& empty($recovery)) {{__("Add Space")}} @endif

@include('admin.message') @if($rows->total() > 0)
{{ __("Showing :from - :to of :total Spaces",["from"=>$rows->firstItem(),"to"=>$rows->lastItem(),"total"=>$rows->total()]) }} {{$rows->appends(request()->query())->links()}}
@foreach($rows as $row)
@include('Space::frontend.manageSpace.loop-list')
@endforeach
{{ __("Showing :from - :to of :total Spaces",["from"=>$rows->firstItem(),"to"=>$rows->lastItem(),"total"=>$rows->total()]) }} {{$rows->appends(request()->query())->links()}}
@else {{__("No Space")}} @endif @endsection @section('footer') @endsection