@extends('admin.layout.main') @section('admin')

Business Types Management

Manage your business types and categories

Add New Business Type
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif

All Business Types

@forelse($businessTypes as $businessType) @empty @endforelse
Business Type Description Status Order Created Actions
{{ $businessType->name }}
ID: {{ $businessType->id }}
@if($businessType->description) {{ Str::limit($businessType->description, 80) }} @else No description @endif
@if($businessType->is_active) Active @else Inactive @endif
{{ $businessType->sort_order }}
{{ $businessType->created_at->format('M j, Y') }}
@csrf

No business types found

Get started by creating your first business type

Create First Business Type
@if($businessTypes->hasPages())
{{ $businessTypes->links() }}
@endif
@endsection