@extends('layouts.app') @section('title', 'Financial Items') @section('content')

Financial Items

@if(session('success'))
{{ session('success') }}
@endif
@foreach($items as $item) @endforeach
Code / Desc. UoM Plant Label Material Sales Price Qty Actions
{{ $item->code }}
{{ $item->description }}
{{ $item->uom }} £{{ number_format($item->plant, 2) }} £{{ number_format($item->labour, 2) }} £{{ number_format($item->material, 2) }} £{{ number_format($item->sales_price, 2) }} {{ $item->quantity }} Actions
@csrf
@endsection @section('js') @endsection