feat: add analysis tools and dashboard views for intern data tracking and reporting
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
require __DIR__ . '/../vendor/autoload.php';
|
||||
$app = require_once __DIR__ . '/../bootstrap/app.php';
|
||||
$app->make(Illuminate\Contracts\Console\Kernel::class)->bootstrap();
|
||||
|
||||
$controller = new \App\Http\Controllers\CareerController();
|
||||
session(['intern_id' => 18]);
|
||||
|
||||
$response = $controller->internDashboard();
|
||||
echo "internDashboard returned view: " . $response->name() . "\n";
|
||||
echo "View data intern: " . $response->getData()['intern']->name . "\n";
|
||||
echo "View data certificate_code: " . $response->getData()['intern']->certificate_code . "\n";
|
||||
Reference in New Issue
Block a user