@extends('layouts.main-layout') @section('styles') @endsection @section('content')
Add New
@if($taxes->count() > 0) @foreach ($taxes as $tax) @endforeach
Tax Name Tax Amount Applicable On Reservations Applicable On Extras
{{ $tax->Name }} {{ $tax->Amount }} {{ $tax->ApplicableOnReservation == 1 ? 'Yes': 'No' }} {{ $tax->ApplicableOnExtra == 1 ? 'Yes': 'No' }}
@else

No Tax found.

@endif
@endsection @section('scripts') @endsection