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

@isset($kategori) Template Kategori: {{ $kategori->nama }} @else Semua Template @endisset

@if (!isset($kategori)) @endif
@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
@endif
@forelse($templates as $key => $template) @empty @endforelse
Nomor Nama Template Kategori Fitur Foto Harga Aksi
{{ $key + 1 }} {{ $template->nama_template }} {{ $template->kategori->nama ?? '-' }} {{ $template->fitur->deskripsi ?? '-' }}
foto
Rp {{ number_format($template->harga, 0, ',', '.') }}
@csrf @method('DELETE')
Belum ada template
@if (!isset($kategori)) @endif @foreach ($templates as $template) @endforeach
@endsection