<?php
namespace App\Services;
use App\Contracts\Service;
use App\Support\ClassLoader;
use function get_class;
use Nwidart\Modules\Facades\Module;
class AwardService extends Service
{
/**
* Find any of the award classes
*
* @return \App\Contracts\Award[]
*/
public function findAllAwardClasses(): array
$awards = [];
$formatted_awards = [];
// Find the awards in the modules/Awards directory
// $classes = ClassLoader::getClassesInPath(module_path('Awards'));
// $awards = array_merge($awards, $classes);
// Look throughout all the other modules, in the module/{MODULE}/Awards directory
foreach (Module::all() as $module) {
$path = $module->getExtraPath('Awards');
$classes = ClassLoader::getClassesInPath($path);
foreach ($classes as $class) {
$awards[] = $class;
}
foreach ($awards as $award) {
$formatted_awards[get_class($award)] = $award;
return $formatted_awards;