11 lines
362 B
PHP
11 lines
362 B
PHP
<?php
|
|
require 'vendor/autoload.php';
|
|
$app = require_once 'bootstrap/app.php';
|
|
$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);
|
|
$kernel->bootstrap();
|
|
|
|
$periode = \App\Models\PeriodeSeleksi::where('status', 'aktif')->first();
|
|
$export = new \App\Exports\PenilaianWargaExport($periode->id);
|
|
$data = $export->collection();
|
|
print_r($data->toArray());
|