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

Sent Successfully

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

@endif @section('content')
Dashboard | Inventory | Inventory items Controll
Inventory Controll
@foreach ($inventory as $iteam) @endforeach
{{ __('basic.id') }} {{ __('basic.code') }} {{ __('basic.specialty') }} {{ __('basic.branch') }} {{ __('basic.category') }} {{ __('basic.name') }} {{ __('basic.price') }} {{ __('basic.place') }} {{ __('basic.quantity_notify') }} {{ __('basic.current_quantity') }} {{ __('basic.handle') }}
{{ $iteam->id }} {{ $iteam->code }} {{ $iteam->specialty->name }} {{ $iteam->branch->name }} {{ $iteam->service_inv_cat->name }} {{ $iteam->name }} {{ $iteam->price }} {{ $iteam->place }} {{ $iteam->quantity_notify }} {{ $iteam->current_quantity }}
@endsection @section('js') @endsection