@extends('admin.layout.index') @section('title', 'Kategoriler') @section('content')
Yeni Ekle
@foreach($data as $key => $category) @endforeach
Sıra Görsel
Kategori Adı
Üst Kategori
Edit
{{ $key+1 }} {{ $category->name }} @if($category->top == "0") YOK @else @if(\app\Models\Categories::where('id', $category->top)->count() == 0) Silinmiş @else {{\app\Models\Categories::where('id', $category->top)->get()->first()->name}} @endif @endif Düzenle Sil
@endsection