index.blade.php 1.62 KB
Newer Older
Yonatan Parapat committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
@extends('adminlte::layouts.app')

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

@section('contentheader_title')
    <center>List Customer</center>
@endsection

@section('main-content')
    <table class="table table-striped">
    <thead>
        <tr>
            <th>Username</th>
            <th>Nama Barang</th>
            <th>Kategori</th>
            <th>Harga</th>
            <th>Jumlah</th>
            <th>Total Harga</th>
            <th>Action</th>
        </tr>
    </thead>
                            
        <tbody>
            @foreach($pembelians as $rb)
                <tr>
                    <td>{{$rb->username}}</td>
                    <td>{{$rb->nama_barang}}</td>
                    <td>{{$rb->kategori}}</td>
                    <td>{{$rb->harga}}</td>
                    <td>{{$rb->jumlah}}</td>
                    <td>{{$rb->total_harga}}</td>
                   <td>
                    @if($rb->status_pengantaran=="Terkirim")
                          <p>Delivered</p>
                    @else($rb->status_pengantaran=="Request")
                   
                         <form action="{{url('konfPengantaran/'.$rb->id)}}" method="post">
                             {{csrf_field()}}
                              <input type="hidden" name="_method" value="PUT">
                              <button type="submit" class="btn btn-info"><i class="glyphicon glyphicon-apple"> Delivered</i></button>
                            </form>
                            @endif
                    </td>
                    </tr>
            @endforeach
    </tbody>
</table>
@endsection