@extends('layouts.master') @section('title', 'Services | Proxima - Medical Management app') @section('title-topbar', 'Services') @section('css') @endsection @section('fixedcontent') @if (Session::has('success'))
@endif @if (Session::has('error_delete')) @endif @endsection @section('content'){{ __('basic.id') }} | {{ __('basic.specialty') }} | {{ __('basic.branch') }} | {{ __('basic.type') }} | {{ __('basic.name') }} | {{ __('basic.price') }} | {{ __('basic.pulses') }} | {{ __('basic.package') }} | {{ __('basic.package items number') }} | {{ __('basic.handle') }} |
---|---|---|---|---|---|---|---|---|---|
{{ $iteam->id }} | @if (count($iteam->specialties)) @foreach ($iteam->specialties as $specialty) {{ $specialty->name }} @endforeach @else {{ $iteam->specialty->name }} @endif | @if ($iteam->branch) {{ $iteam->branch->name }} @else All @endif | {{ $iteam->service_inv_cat->name }} | {{ $iteam->name }} | {{ $iteam->price }} | {{ $iteam->pulses }} | @if ($iteam->package == 0) Not package @elseif ($iteam->package == 1) session package @elseif ($iteam->package == 2) pulses package @endif | {{ $iteam->package_items_number }} |
@if (in_array($iteam->id, [1, 2, 3, 4]))
{{ __('basic.edit') }}
@else
@if (!$iteam->deleted_at)
{{ __('basic.edit') }}
@endif
@if ($iteam->deleted_at)
{{ __('basic.restore') }}
@else
{{ __('basic.delete') }}
@endif
@endif
|