@extends('layouts.master') @section('title', 'Expenses items | Proxima - Medical Management app') @section('title-topbar', 'Expenses items') @section('css') @endsection @section('fixedcontent') @if (Session::has('success'))
@endif @if (Session::has('error_delete')) @endif @endsection @section('content'){{ __('basic.id') }} | {{ __('basic.specialty') }} | {{ __('basic.type') }} | {{ __('basic.name') }} | {{ __('basic.price') }} | {{ __('basic.handle') }} |
---|---|---|---|---|---|
{{ $iteam->id }} | {{ $iteam->specialty->name }} | {{ $iteam->service_inv_cat->name }} | {{ $iteam->name }} | {{ $iteam->price }} |
@if (!in_array($iteam->id, [1]))
{{ __('basic.edit') }}
{{ __('basic.delete') }}
@endif
|