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

{{ __('Categories') }}

@csrf @method('POST') @component('admin.components.input',[ 'label'=>__('Başlık'), 'name'=>'title', 'value'=>old('title'), 'placeholder'=>__('Tür başlığı'), ]) @endcomponent
@foreach($list as $record) @if ( empty($record->parent->title) ) @else @endif @endforeach
{{ __('Title') }} {{ __('Parent') }} {{ __('Actions') }}
{{ $record->title }}{{ $record->parent->title }}
{{ $list->links() }}
@endsection {{-- Styles Section --}} @section('styles') @endsection {{-- Scripts Section --}} @section('scripts') @endsection