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

+ @lang('Add Insurance')

@endcan

@lang('Insurance List')

@if(request()->isFilterActive) @lang('Clear') @endif
@foreach ($insurances as $insurance) @endforeach
@lang('ID') @lang('Name') @lang('Number') @lang('Code') @lang('Rate') @lang('Status') @lang('Actions')
{{ $insurance->id }} {{ $insurance->name }} {{ $insurance->insurance_no }} {{ $insurance->insurance_code }} {{ $insurance->insurance_rate }} @if($insurance->status == '1') @lang('Active') @else @lang('Inactive') @endif    @can('hospital-department-update')    @endcan @can('hospital-department-delete') @endcan
{{ $insurances->withQueryString()->links() }}
@include('layouts.delete_modal') @endsection