@extends('layouts.app') @section('content')
{{-- Sub-category table --}}
{{-- Search input --}}
@if ($message = Session::get('success')) @endif @if ($message = Session::get('error')) @endif @if ($errors->any()) @endif
@php $counter = 1; @endphp @foreach ($subCategories as $subCategory) @endforeach
No. Sub-Category Code Category Under Action
{{ $counter++ }} {{ $subCategory->name }} {{ $subCategory->code }} @if ($subCategory->category) {{ $subCategory->category->name }} @else No record found @endif -Edit
{{-- End of sub-category table --}}
@endsection