{{-- Extends layout --}} @extends('admin.layouts.app') {{-- Content --}} @section('content')

{{ __('Equipments') }}

@csrf @method('POST') @component('admin.components.input',[ 'label'=>__('Başlık'), 'name'=>'title', 'value'=>old('title'), 'placeholder'=>__('Ekipman başlığı giriniz'), ]) @endcomponent
@foreach($list as $category) @if ( empty($category->parent_category->title) ) @else @endif @endforeach
{{ __('Title') }} {{ __('Type') }} {{ __('Main Category') }} {{ __('Actions') }}
{{ $category->title }} {{ $category->type }}{{ $category->parent_category->title }}
{{ $list->links() }}
@endsection {{-- Styles Section --}} @section('styles') @endsection {{-- Scripts Section --}} @section('scripts') @endsection