Created command for importing data from excel

This commit is contained in:
Gregorio Chiko Putra
2019-05-14 14:58:06 +07:00
parent a1f7147bd1
commit 9b91fe40ce
11 changed files with 757 additions and 2 deletions

View File

@@ -2,6 +2,8 @@
namespace App\Providers;
use App\Events\HasilBelajarImported;
use App\Listeners\LogImportedHasilBelajar;
use Illuminate\Support\Facades\Event;
use Illuminate\Auth\Events\Registered;
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
@@ -18,6 +20,9 @@ class EventServiceProvider extends ServiceProvider
Registered::class => [
SendEmailVerificationNotification::class,
],
HasilBelajarImported::class => [
LogImportedHasilBelajar::class,
],
];
/**