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
3 changes: 1 addition & 2 deletions app/Console/Commands/SendReminder.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ public function handle()
$tanggal = date('Y-m-d');
$reminders = DaftarReminder::with('daftarKegiatan')
->where('tanggal', $tanggal)



->where('status', '!=', 'sent')
->get();
foreach ($reminders as $reminder) {
Expand Down
2 changes: 1 addition & 1 deletion app/Helpers/Helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ class Helper
'04:00:00' => '04:00',
'05:00:00' => '05:00',
'06:00:00' => '06:00',
'07:00:00' => '07:00',
'07:00:00' => '07:00',
];

public static $jenis_perjalanan = [
Expand Down
1 change: 0 additions & 1 deletion app/Providers/AppServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,5 @@ public function boot(): void
->allowedFor('admin')
->get();
});

}
}
1 change: 0 additions & 1 deletion app/Providers/NovaServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,5 @@ public function tools()
public function register()
{
parent::register();

}
}
2 changes: 0 additions & 2 deletions config/pulse.php
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<?php

use AaronFrancis\Pulse\Outdated\Livewire\Outdated;
use AaronFrancis\Pulse\Outdated\Recorders\OutdatedRecorder;
use HT\Pulse\Vulnerable\Recorders\Vulnerable;
use Laravel\Pulse\Http\Middleware\Authorize;
use Laravel\Pulse\Pulse;
use Laravel\Pulse\Recorders;


return [

/*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ public function up(): void
{
Schema::table('daftar_reminders', function (Blueprint $table) {
$table->time('waktu_kirim')
->after('tanggal')
->nullable();
->after('tanggal')
->nullable();
});
}

Expand Down
2 changes: 1 addition & 1 deletion routes/console.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
->runInBackground();
Schedule::command('pulse:check')->hourly()
->withoutOverlapping()
->runInBackground();
->runInBackground();