@extends('layouts.admin.base-dashboard') @section('title', 'Daftar Layanan') @section('content') @include('layouts.admin.include.message')

Daftar Layanan

@foreach ($services as $service) @endforeach
No Service Name Description Price Status Tindakan
{{ $loop->iteration }} {{ $service->name }} {{ $service->description }} {{ 'Rp ' . number_format($service['price'], 0, ',', '.') }} {{ $service->status == 'inactive' ? 'Inactive' : 'Active' }} Edit
@endsection