@extends('layouts.main') @push('styles') @endpush @section('content')

{{ __('clinical_data.opticals') }}

@include('clinical_data::eye_glasses.menu')
@include('flash::message')

Export data to Copy, CSV, Excel, PDF & Print

@if(count($eye_glasses) > 0) @foreach($eye_glasses as $record) @endforeach @else @endif
Name Buying Price Insurance Status Non Insured Price Insured Price Account Name
{{ $record['name'] }} {{ ugandan_shillings($record['buying_price']) }} @if ($record['insurance']) Yes @else No @endif {{ ugandan_shillings($record['non_insured_price']) }} {{ ugandan_shillings($record['insured_price']) }} {{ $chart_of_accounts[$record['account_id']] }} Edit {{ Form::model($record['id'] ,['method' => 'DELETE', 'route' => ['opticals.destroy', $record['id']]]) }} {{ Form::close() }}
No records available
@endsection @push('scripts') @endpush