63 lines
1.9 KiB
PHP
63 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Dashboard;
|
|
|
|
use Illuminate\Http\Request;
|
|
use App\Http\Controllers\Controller;
|
|
|
|
//Library
|
|
use App\Library\Contracts\ContractHelper;
|
|
use App\Library\Lookups\LookupHelper;
|
|
|
|
class DashboardController extends Controller
|
|
{
|
|
public function __construct() {
|
|
$this->middleware('auth');
|
|
$this->middleware('role:User');
|
|
}
|
|
|
|
public function index() {
|
|
//Declare the contract helper
|
|
$contractHelper = new ContractHelper;
|
|
$lookupHelper = new LookupHelper;
|
|
|
|
//Declare array variable
|
|
$contracts = array();
|
|
|
|
//Get the current amount of contracts availabe to the corporation for displaying on the dashboard with the relevant
|
|
//information such as pickup and destination, jumps, and profit margin.
|
|
$tempContracts = $contractHelper->GetContracts(98615428);
|
|
|
|
dd($tempContracts);
|
|
|
|
foreach($tempContracts as $con) {
|
|
$startSystem = $lookupHelper->GetSolarSystemName($con->start_location_id);
|
|
$endSystem = $lookupHelper->GetSolarSystemName($con->end_location_id);
|
|
|
|
$final = [
|
|
'pickup' => $startSystem,
|
|
'destination' => $endSystem,
|
|
'type' => $con->type,
|
|
'volume' => $con->volume,
|
|
'expired' => $con->date_expired,
|
|
'collateral' => $con->collateral,
|
|
'reward' => $con->reward,
|
|
'availability' => $con->availability,
|
|
];
|
|
|
|
array_push($contracts, $final);
|
|
}
|
|
|
|
$num = sizeof($contracts);
|
|
|
|
return view('dashboard.dashboard')->with('contracts', $contracts)
|
|
->with('num', $num);
|
|
}
|
|
|
|
public function profile() {
|
|
$user = User::where(['character_id' => $this->user()->getId()])->first();
|
|
|
|
return view('dashboard.profile')->with('user', $user);
|
|
}
|
|
}
|