@extends('layouts.master')
@section('css')
@toastr_css
@section('title')
Idea - Items
@stop
@endsection
@section('page-header')
@endsection
@section('content')
| Item Name |
Unit |
Budget |
Cost |
Balance |
Executed |
| {{ $lab->desc }} |
{{ $lab->unit->name }} |
{{ $lab->budget }} |
{{ $lab->cost }} |
{{ $lab->balance }} |
{{ $lab->execute }} |
| # |
Code Name |
Executed |
@foreach ($codes as $index => $code)
| {{ $index + 1 }} |
{{ $code->name }} |
{{ $code->execute }} |
@endforeach
@endsection
@section('js')
@toastr_js
@toastr_render
@endsection