@extends('Admin/layout/master') @section('title', 'Insurance Company List') @section('content')
Insurance Company List
@can('insurance create') @endcan
@foreach ($insurenc_companies as $index => $insurenc_company) @endforeach
Index Payer ID Insurance Company Name Address Phone Number Action
{{ ++$index }} {{ $insurenc_company->payer_id }} {{ $insurenc_company->insurence_company_name }} {{ $insurenc_company->address }} {{ $insurenc_company->phone_number }} {{-- --}} @can('insurance update') Edit @endcan @can('insurance delete') @endcan
{{ $insurenc_companies->links() }}
@endsection