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

{{ __('Categories') }}

@foreach($list as $category) @if ( empty($category->parent_category->title) ) @else @endif @endforeach
{{ __('Title') }} {{ __('Main Category') }} {{ __('Actions') }}
{{ $category->title }}{{ $category->parent_category->title }}
{{ $list->links() }}
@endsection {{-- Styles Section --}} @section('styles') @endsection {{-- Scripts Section --}} @section('scripts') @endsection