@extends('page') @section('content')

@if ($message = Session::get('success'))
{{ $message }}
@endif @if (count($errors) > 0)
Whoops! There were some problems with your input.

@endif

{{$category->category}}

@if($category->subCategory->isNotEmpty())
Subcategories
    @foreach($category->subCategory as $subkey => $subcategory)
  • {{$subcategory->category}}
  • @endforeach
@endif
@include('components.dashboard.vertical')
@endsection