@extends('layouts.master') @section('title', 'Services | Proxima - Medical Management app') @section('title-topbar', 'Services') @section('css') @endsection @section('fixedcontent') @if (Session::has('success'))

Sent Successfully

{{ Session::get('success') }}

@endif @if (Session::has('error_delete'))

Can not be deleted

{{ Session::get('error_delete') }}

@endif @endsection @section('content')
{{ __('basic.dashboard') }} | {{ __('patientappo.service controll') }}
{{ __('patientappo.service controll') }}
@foreach ($service as $iteam) @endforeach
{{ __('basic.id') }} {{ __('basic.specialty') }} {{ __('basic.branch') }} {{ __('basic.type') }} {{ __('basic.name') }} {{ __('basic.price') }} {{ __('basic.pulses') }} {{ __('basic.package') }} {{ __('basic.package items number') }} {{ __('basic.handle') }}
{{ $iteam->id }} {{ $iteam->specialty->name }} @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 {{ __('basic.edit') }} @if ($iteam->deleted_at) {{ __('basic.restore') }} @else {{ __('basic.delete') }} @endif @endif
@endsection @section('js') @endsection