@extends('layout.master') @push('plugin-styles') @endpush @section('content')
Categories table
New
@if(count($categories) > 0) @foreach($categories as $categories) @endforeach @endif
# Title Parent Category
{{$categories->id}} {{$categories->title}} @if($categories->parent_id != 0) @if(isset(get_category_by_id($categories->parent_id)->title)) {{get_category_by_id($categories->parent_id)->title}} @endif @endif
@method('delete') @csrf Edit
@endsection