@extends('layouts.app') @section('title', 'Protocol Types Management') @section('page-title', 'Protocol Types Management') @section('content')
Protocol Types Management
Add New Protocol Type
@if($protocolTypes->count() > 0)
@foreach($protocolTypes as $protocolType) @endforeach
ID Name Description Status Created Actions
{{ $protocolType->id }} {{ $protocolType->name }} {{ Str::limit($protocolType->description, 50) }} @if($protocolType->is_active) Active @else Inactive @endif {{ $protocolType->created_at->format('M d, Y') }}
{{ $protocolTypes->links() }}
@else
No Protocol Types Found

Start by creating your first protocol type.

Create First Protocol Type
@endif
@endsection @section('scripts') @endsection