@extends('welcome')
@section('title',$type)
@section('content-header','All '.$type .' Amenities of your coworking space')
@section('content-breadcrumb')
{{$type}}
@endsection
@section('content')
@include('dashboard.messages')
@if(count($amenities) > 0)
@foreach($amenities as $amenity)
@if($amenity->image)
@endif
@endforeach
@else
There are no amenities available in your space yet
Please add all your amenities
@endif
@endsection
@push('scripts')
@endpush