index.blade.php 1.01 KB
@extends('adminlte::layouts.app')

@section('htmlheader_title')
    {{ trans('adminlte_lang::message.home') }}
@endsection

@section('contentheader_title')
    <center>Histori Pembelian</center>
@endsection

@section('main-content')
<table class="table table-striped">
    <thead>
        <tr>
            <th>Nama Barang</th>
            <th>Kategori</th>
            <th>Harga</th>
            <th>Jumlah</th>
            <th>Total Harga</th>
            <th>Status Pengantaran</th>
        </tr>
    </thead>
                       
        <tbody>
        @foreach($pembelians as $pembelian)
                <tr>
                    <td>{{$pembelian->nama_barang}}</td>
                    <td>{{$pembelian->kategori}}</td>
                    <td>{{$pembelian->harga}}</td>
                    <td>{{$pembelian->jumlah}}</td>
                    <td>{{$pembelian->total_harga}}</td>
                    <td>{{$pembelian->status_pengantaran}}</td>
                </tr>
            @endforeach
    </tbody>
</table>
@endsection