@extends('layouts.app') @section('title', 'Manajemen Template') @section('content')

Daftar Template

@if(session('success'))
{{ session('success') }}
@endif
@forelse($templates as $index => $t) @empty @endforelse
# Nama Kategori Paket Harga Aksi
{{ $index + 1 }} {{ $t->nama_template }} {{ $t->kategori->nama ?? '-' }} {{ ucfirst($t->paket) }} Rp {{ number_format($t->harga,0,',','.') }}
Belum ada template.
@endsection