Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Bagas Udi Sahsangka committed Oct 17, 2020
1 parent d472893 commit e113d79
Show file tree
Hide file tree
Showing 13 changed files with 684 additions and 511 deletions.
8 changes: 4 additions & 4 deletions app/Http/Controllers/AppController.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ public function getNavigation(Request $request)
{
$nav = [
['label' => 'Home', 'icon' => 'el-icon-s-home', 'path' => 'home'],
['label' => 'Transaksi', 'icon' => 'el-icon-document-copy', 'path' => 'parking-transaction'],
['label' => 'Member', 'icon' => 'el-icon-bank-card', 'path' => 'member'],
['label' => 'Transaksi', 'icon' => 'el-icon-document-copy', 'path' => 'transaksi'],
['label' => 'Keanggotaan', 'icon' => 'el-icon-bank-card', 'path' => 'member'],
];

$adminNav = [
['label' => 'Laporan', 'icon' => 'el-icon-data-analysis', 'path' => 'report'],
['label' => 'User', 'icon' => 'el-icon-user', 'path' => 'user'],
['label' => 'Snapshot', 'icon' => 'el-icon-camera', 'path' => 'snapshot'],
['label' => 'Notifikasi', 'icon' => 'el-icon-bell', 'path' => 'notification'],
// ['label' => 'Snapshot', 'icon' => 'el-icon-camera', 'path' => 'snapshot'],
['label' => 'Log', 'icon' => 'el-icon-bell', 'path' => 'notification'],
['label' => 'Pengaturan', 'icon' => 'el-icon-setting', 'path' => 'setting'],
];

Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ php artisan jwt:secret

# prepare database server
sudo mysql -uroot -e 'create database parking_system'
sudo mysql -uroot -e 'grant all on parking_system.* to parking_system@localhost identified by Bismillah1@#$%"'
sudo mysql -uroot -e 'grant all on parking_system.* to parking_system@localhost identified with mysql_native_password by Bismillah1@#$%"'
sudo mysql -uroot -e 'flush privileges'

# migrate then populate db
Expand Down
Loading

0 comments on commit e113d79

Please sign in to comment.