@extends('layouts.admin') @section('title') View @endsection @section('content')
{{$model->title}}
...
Subcategories
@foreach($model->getSubCategory() as $main)
...
{{$main->title}}
@foreach($main->getSubCategory() as $subCategory) {{$subCategory->title}} @endforeach
@endforeach
@endsection