@extends('layouts.layoutapp') @section('content')
Product Name | Category | Avl. Qty | Price | {{--Product Code | --}} @if($status != 'current')Created by | Date | @endif|
---|---|---|---|---|---|---|---|
{{ $data->name }} |
{{ $data->category->name }} |
{{ $data->qty }} |
{{ $data->unit_price }} |
{{--
{{ $data->code }} | --}}
@if($status != 'current')
{{ $data->user ? $data->user->name : 'Unknown' }} |
@if($status == 'E')
{{ $data->updated_at->toDateString() ? \Carbon\Carbon::parse($data->updated_at->toDateString())->format('d-m-Y') : '' }} |
@else
{{ $data->created_at->toDateString() ? \Carbon\Carbon::parse($data->created_at->toDateString())->format('d-m-Y') : '' }} |
@endif
@endif