@extends('layouts.main-layout') @section('title') All Floors | Dashboard @endsection @section('content')

Manage Floors

@foreach($floors as $i => $floor) @endforeach
# Floor Id Floor Name Floor Description Create Date Actions
{{$i + $floors->firstItem()}} {{$floor->FloorId}} {{$floor->Floorname}} {{$floor->FloorDescription}} {{$floor->CreateDate->diffForHumans()}} @hasAccess('Edit Floor') @endhasAccess @hasAccess('Delete Floor') {{-- {{route('admin.floors.destroy',$floor->FloorId)}} --}}
@csrf @method('DELETE')
@endhasAccess
{{-- {{$floors->appends(request()->query())->links('vendor.pagination.default')}} --}} {{$floors->links()}}
@endsection @section('js') @endsection