@extends('layouts.app') @section('css') @endsection @section('content') @if (session('success'))
 {{ session('success') }}
@endif

{{$subes->title}} Inventory

Send Product


@foreach ($stock as $item) @endforeach
BRANCH USER Date PRODUCT TOTAL STOCK PRICE TOTAL
{{$item->getBranch->title}} {{$item->getUser->name}} {{ \Carbon\Carbon::parse($item->created_at)->format('Y-m-d') }} {{$item->getProduct->title}} {{$item->getProduct->price*$item->total_stock}}
@endsection @section('js') @endsection