@extends('layouts.app') @section('title', 'Service Categories') @section('content')

Service Categories

Manage service categories and their configurations

Clear
All Service Categories
@if($categories->count() > 0)
@foreach($categories as $category) @endforeach
Category Name Code Description Status Created Actions
{{ $category->name }}
@if($category->code) {{ $category->code }} @else - @endif @if($category->description) {{ Str::limit($category->description, 50) }} @else - @endif {{ ucfirst($category->status) }} {{ $category->created_at->format('M d, Y') }}
{{ $categories->links() }}
@else
No service categories found

Start by adding your first service category.

@endif
@if(session('success')) @endif @if(session('error')) @endif @if($errors->any()) @endif @foreach($categories as $category) @endforeach @endsection