dbfdg @extends('layouts.admin') @section('page-title') {{__('Product Stock')}} @endsection @section('breadcrumb')
{{__('Date')}} | {{__('Product Name')}} | {{__('Quantity')}} | {{__('Type')}} | {{__('Description')}} |
---|---|---|---|---|
{{$stock->created_at->format('d M Y')}} | {{ !empty($stock->product) ? $stock->product->name : '' }} | {{ $stock->quantity }} | @if ($stock->type == "manually") {{ ucfirst($stock->type) }} @elseif($stock->type == "invoice") {{ ucfirst($stock->type) }} @elseif($stock->type == "bill") {{ ucfirst($stock->type) }} @elseif($stock->type == "purchase") {{ ucfirst($stock->type) }} @elseif($stock->type == "pos") {{ ucfirst($stock->type) }} @endif | {{$stock->description}} |