Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions app/Nova/Dashboards/SystemHealth.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

namespace App\Nova\Dashboards;

use Laravel\Nova\Dashboard;
use App\Nova\Metrics\SystemInfo;
use App\Nova\Metrics\IssuesTable;
use App\Nova\Metrics\BackupsTable;
use App\Nova\Metrics\IssuesTable;
use App\Nova\Metrics\OutdatedTable;
use App\Nova\Metrics\ServerResource;
use App\Nova\Metrics\SystemInfo;
use Laravel\Nova\Dashboard;

class SystemHealth extends Dashboard
{
Expand Down
8 changes: 4 additions & 4 deletions app/Nova/Metrics/Kegiatan.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ public function name()
{
switch ($this->jenis) {
case 'Rapat':
return 'Rapat Mendatang';
return 'Rapat Mendatang';
case 'Deadline':
return 'Deadline Mendatang';
return 'Deadline Mendatang';
case 'Libur':
return 'Hari Libur Nasional';
return 'Hari Libur Nasional';
default:
return 'Kegiatan ' . ucfirst($this->jenis);
return 'Kegiatan '.ucfirst($this->jenis);
}
}

Expand Down