@extends('layouts.master') @section('css') @toastr_css @section('title') Idea - Items @stop @endsection @section('page-header')

Item Details

@endsection @section('content')


@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Item Details
Item Name Unit Budget Cost Balance Executed
{{ $lab->desc }} {{ $lab->unit->name }} {{ $lab->budget }} {{ $lab->cost }} {{ $lab->balance }} {{ $lab->execute }}
Item Codes
@foreach ($codes as $index => $code) @endforeach
# Code Name Executed
{{ $index + 1 }} {{ $code->name }} {{ $code->execute }}



@endsection @section('js') @toastr_js @toastr_render @endsection