49 lines
1.2 KiB
PHP
49 lines
1.2 KiB
PHP
@extends('layouts.master')
|
|
|
|
@section('konten')
|
|
<h1>Halaman Toko 1</h1>
|
|
|
|
<a href="/product/tambah" type="button" class="btn btn-primary mb-3">Tambah Data</a>
|
|
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<div class="alert alert-primary">
|
|
<b> Nama Toko : </b>{{$namaToko}}
|
|
<br>
|
|
<b> Alamat : </b>{{$alamat}}
|
|
<br>
|
|
<b> Tipe Toko : </b>{{$tipe_toko}}
|
|
|
|
</div>
|
|
<h1>Daftar Produk Kami</h1>
|
|
</div>
|
|
<div class="card-body">
|
|
<table class="table table-striped table-bordered">
|
|
<thead class="thead-dark">
|
|
<tr>
|
|
<th scope="col">No</th>
|
|
<th scope="col">Nama Produk</th>
|
|
<th scope="col">Stok</th>
|
|
<th scope="col">Harga</th>
|
|
<th scope="col">Aksi</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<th scope="row">1</th>
|
|
<td>Motherboard Asrock</td>
|
|
<td>100 </td>
|
|
<td>Rp 1.000.000</td>
|
|
<td>
|
|
<button type="button" class="btn btn-warning">Hapus</button>
|
|
<button type="button" class="btn btn-info">Edit</button>
|
|
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
@endsection |