Files
app-test-laravel/resources/views/Admin/sold_products.blade.php
effendy-dev 461a740be0 first commit
2025-12-01 14:04:35 +07:00

31 lines
919 B
PHP

@extends('layouts.admin_master')
@section('content')
<div class="card mb-4">
<div class="card-header">
<i class="fas fa-table mr-1"></i>
Sold Products
</div>
<div class="card-body">
<div class="table-responsive">
<table class="table table-bordered" id="dataTable" width="100%" cellspacing="0">
<thead>
<tr>
<th>Product Name</th>
<th>Quantity</th>
</tr>
</thead>
<tbody>
@foreach($products as $row)
<tr>
<td>{{ $row->product_name }}</td>
<td>{{ $row->count }}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
@endsection