index.blade.php 967 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
@extends('adminlte::layouts.app')

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

@section('contentheader_title')
	<center>Request Barang</center>
@endsection

@section('main-content')
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
<table class="table table-striped">
    <thead>
    	<tr>
            <th>Nama Barang</th>
            <th>Kategori</th>
            <th>Harga</th>
            <th>Action</th>
        </tr>
    </thead>
                       
        <tbody>
            @foreach($data_requests as $dataRequest)
	            <tr>
	                <td>{{$dataRequest->nama_barang}}</td>
                    <td>{{$dataRequest->kategori}}</td>
                    <td>{{$dataRequest->harga}}</td>
                    <td>
                        <a href="{{ url('/createRequest', $dataRequest->id) }}" type="submit" button type="button" class="btn btn-warning">Request</a>
                    </td>
				</tr>
    		@endforeach
    </tbody>
</table>
35
@endsection