Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

index.blade.

php

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
<table border="1" class="table table-hover">
        <tr>
            <th>idbuku</th>
            <th>NamaBuku</th>
            <th>NamaPengarang</th>
            <th>Kategori</th>
            <th>Qty</th>            
            <th>Cover</th>
        </tr>
    </table>
   
</body>
</html>
home.blade.php

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
   
    <title>Document</title>
</head>
<body onload="lihatpustaka();">

    <h1 class="container-fluid p-5 bg-dark text-white" style="text-


align:center">Perpustakaan Madani <h1>
    <h3>Data Perpustakaan</h3>
 
   
   
    <br/>
    <label for="idbuku">Masukkan id buku yang ingin dicari</label>
    <table>
        <tr>    
    <td><input type="text" id="idbuku" class="form-control form-control"
style="width: 300px;"></td>
    <td><button type="button" id="submit" class="btn btn-success btn"
style="width:100px;" >Search</button></td>
    <td><button type="button" id="submit" class="btn btn-danger btn"
style="width:125px;" >Lihat Semua</button></td>    
        </tr>
    </table>
    <br/>
   
    <div id="tabel">
   
    </div>
</body>
</html>

You might also like