@extends('layouts.app') @section('content')

Add New Cottage/Room

@csrf

{{ __('List of Rooms and Cottages') }}
@if (session('status')) @endif @foreach($cottages as $cottage) @endforeach
Cottage Description Price Action
{{ $cottage->name }} {{ $cottage->description }} {{ $cottage->price }}
@csrf @method('DELETE')

Are you sure you want to delete this reservation?

@csrf @method('PUT')

Are you sure you want to edit this cottage?

@endsection