@extends('admin.layout.layout')
@section('content')
Fitness Categories
S.NO |
Name |
Type |
Action |
@foreach ($fitness_categories as $fitness_category)
{{ $loop->iteration }} |
{{ $fitness_category->name }} |
{{ $fitness_category->type }} |
|
@endforeach
{{-- Data Table Code --}}
{{-- Opening modal if any error exists --}}
@if ($errors->any())
@endif
@endsection