Initial commit: sync from server - all domains and code
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Repositories\InstructorRepository;
|
||||
use App\Support\Auth;
|
||||
use App\Support\Request;
|
||||
use App\Support\Response;
|
||||
|
||||
final class InstructorsController
|
||||
{
|
||||
public function index(): void
|
||||
{
|
||||
$user = Auth::requireUser();
|
||||
Response::json(['data' => (new InstructorRepository())->allForTenant((int) $user['tenant_id'])]);
|
||||
}
|
||||
|
||||
public function store(Request $request): void
|
||||
{
|
||||
$user = Auth::requireRole('tenant_admin');
|
||||
$record = (new InstructorRepository())->create((int) $user['tenant_id'], $request->input());
|
||||
Response::json(['data' => $record], 201);
|
||||
}
|
||||
|
||||
public function update(Request $request, array $params): void
|
||||
{
|
||||
$user = Auth::requireRole('tenant_admin');
|
||||
$record = (new InstructorRepository())->update((int) $user['tenant_id'], (int) $params['id'], $request->input());
|
||||
Response::json(['data' => $record]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user