@extends('layouts.layout') @section('content')
@can('hospital-department-create')

+ @lang('Add Clinic Services')

@endcan

@lang('Clinic Services List')

@foreach ($hospitalDepartments as $hospitalDepartment) @endforeach
@lang('ID') @lang('Clinic Services Name') @lang('Status') @lang('Actions')
{{ $hospitalDepartment->id }} {{ $hospitalDepartment->name }} @if($hospitalDepartment->status == '1') @lang('Active') @else @lang('Inactive') @endif    @can('hospital-department-update')    @endcan @can('hospital-department-delete') @endcan
{{ $hospitalDepartments->withQueryString()->links() }}
@include('layouts.delete_modal') @endsection