@extends('admin-layouts.master') @section('content')
Data Tipe Kamar
@foreach ($ms_type_rooms as $type) @endforeach
No Nama Tipe Kamar Harga Per/Malam Harga Per/Orang Harga Per/Jam PPN (%) Deskripsi Aksi
{{ $loop->iteration }} {{ $type->name ?? '' }} Rp {{ number_format($type->harga_per_malam ?? 0, 0, ',', '.') }} Rp {{ number_format($type->harga_per_orang ?? 0, 0, ',', '.') }} Rp {{ number_format($type->harga_per_jam ?? 0, 0, ',', '.') }} {{ $type->ppn ?? 0 }}% {{ Str::limit($type->description ?? '-', 50) }}
@csrf @method("DELETE")
@push('scripts') @endpush @endsection