@extends('layouts.admin')
@section('title', 'Kategori')
@section('content')
| No | Gambar | Nama | Jenis | Parent | Tipe | Aksi | |
|---|---|---|---|---|---|---|---|
| {{ $loop->iteration + $categories->firstItem() - 1 }} |
@if ($category->image)
|
@if($category->parent_id)└─@endif {{ $category->name }} | @if($category->parent_id) Sub Kategori @else Kategori @endif | @if($category->parent) {{ $category->parent->name }} @else - @endif | {{ $category->type === 'service' ? 'Jasa' : ucfirst($category->type) }} | ||
|
Belum ada data kategori Mulai dengan menambahkan kategori pertama |
|||||||