StocksNew/Modules/Product/resources/views/product/show.blade.php
Sampanna Rimal 53c0140f58 first commit
2024-08-27 17:48:06 +05:45

66 lines
2.3 KiB
PHP

@extends('layouts.app')
@section('content')
<div class="page-content">
<div class="container-fluid">
@include('layouts.partials.breadcrumb', ['title' => $title])
<div class="row">
<div class="col-md-8">
<div class="card card-body p-4">
<div>
<div class="table-responsive">
<table class="table-borderless mb-0 table">
<tbody>
<tr>
<th><span class="fw-medium">Product Name</span></th>
<td>{{ $product->name }}</td>
</tr>
<tr>
<th><span class="fw-medium">Price</span></th>
<td>{{ $product->price }}</td>
</tr>
<tr>
<th><span class="fw-medium">Quantity</span></th>
<td>{{ $product->qty }}</td>
</tr>
<tr>
<th><span class="fw-medium">Category</span></th>
<td>{{ optional($product->category)->title }}</td>
</tr>
<tr>
<th><span class="fw-medium">Sub Category</span></th>
<td>{{ optional($product->subCategory)->title }}</td>
</tr>
<tr>
<th><span class="fw-medium">Supplier</span></th>
<td>{{ optional($product->supplier)->supplier_name }}</td>
</tr>
<tr>
<th><span class="fw-medium">Warehouse</span></th>
<td>{{ optional($product->warehouse)->title }}</td>
</tr>
<tr>
<th><span class="fw-medium">Status</span></th>
<td>{{ $product->status }}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="mb-3 text-end">
<a href="{{ route('product.index') }}" class="btn btn-secondary w-sm">Back</a>
</div>
</div>
</div>
</div>
</div>
@endsection
@push('js')
<script src="{{ asset('assets/js/pages/form-validation.init.js') }}"></script>
@endpush