@extends('app') @section('content')
{{--

Service Type List

--}}

Manage Service Type

@if (session('success'))
{{ session('success') }}
@endif Add New Service Type @forelse ($serviceTypes as $type) {{-- Shows 1, 2, 3... instead of DB ID --}} {{-- --}} @empty @endforelse
ID Service Type Status Actions
{{ $type->serial }}{{ $type->service_type }}
@if (in_array($type->service_type, $protectedStatuses)) Primary Status @else @endif
@if (!in_array($type->service_type, $protectedStatuses)) Edit
@else Primary Status @endif
Edit
No service types found.
@endsection