@extends('layouts.app') @section('css') @endsection @section('content')

Expences

@if (session('success'))
 {{ session('success') }}
@endif

@foreach ($inventory as $item) @endforeach
BRANCH USER CATEGORY PRODUCT DATE STOCK PRICE TOTAL
{{$item->getStockBranch->title}} {{$item->getStockUser->name}} {{$item->getStockProduct->category}} {{$item->getStockProduct->title}} {{$item->created_at}} {{$item->total_stock}} {{$item->getStockProduct->price}} {{$item->getStockProduct->price * $item->total_stock}}
@endsection @section('js') @endsection