5 |
6 | Menu
7 |
8 | @if (request()->is('admin/dashboard'))
9 |
/
10 | Dashboard
11 |
12 | @endif
13 | @if (request()->is('admin/pengguna'))
14 |
/
15 | Pengguna
16 |
17 | @endif
18 | @if (request()->is('admin/pengguna/create'))
19 |
/
20 | Pengguna /
21 | Create
22 |
23 | @endif
24 | @if (request()->is('admin/account/password'))
25 |
/
26 | User /
27 | Ganti Password
28 |
29 | @endif
30 | @if (request()->is('admin/buku'))
31 |
/
32 | Manajemen Buku /
33 | Buku
34 |
35 | @endif
36 | @if (request()->is('admin/kategori'))
37 |
/
38 | Manajemen Buku /
39 | Kategori
40 |
41 | @endif
42 | @if (request()->is('admin/pengarang'))
43 |
/
44 | Manajemen Buku /
45 | Pengarang
46 |
47 | @endif
48 | @if (request()->is('admin/penerbit'))
49 |
/
50 | Manajemen Buku /
51 | Penerbit
52 |
53 | @endif
54 | @if (request()->is('admin/kelas'))
55 |
/
56 | Kelas
57 |
58 | @endif
59 | @if (request()->is('admin/siswa'))
60 |
/
61 | Siswa
62 |
63 | @endif
64 | @if (request()->is('admin/pinjam'))
65 |
/
66 | Peminjaman
67 |
68 | @endif
69 | @if (request()->is('admin/borrowing_report') || request()->is('borrowing_report/search'))
70 |
/
71 | Laporan Peminjaman
72 |
73 | @endif
74 | @if (request()->is('admin/fine') || request()->is('borrowing_report/search'))
75 |
/
76 | Denda
77 |
78 | @endif
79 |
80 |
--------------------------------------------------------------------------------
/resources/views/layouts/app.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |