27 lines
712 B
PHP
27 lines
712 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Http\Controllers\Forms\Integration;
|
||
|
|
|
||
|
|
use App\Http\Controllers\Controller;
|
||
|
|
use App\Http\Resources\FormIntegrationsEventResource;
|
||
|
|
use App\Models\Forms\Form;
|
||
|
|
use App\Models\Integration\FormIntegrationsEvent;
|
||
|
|
|
||
|
|
class FormIntegrationsEventController extends Controller
|
||
|
|
{
|
||
|
|
public function __construct()
|
||
|
|
{
|
||
|
|
$this->middleware('auth');
|
||
|
|
}
|
||
|
|
|
||
|
|
public function index(string $id, string $integrationid)
|
||
|
|
{
|
||
|
|
$form = Form::findOrFail((int)$id);
|
||
|
|
$this->authorize('view', $form);
|
||
|
|
|
||
|
|
return FormIntegrationsEventResource::collection(
|
||
|
|
FormIntegrationsEvent::where('integration_id', (int)$integrationid)->orderByDesc('created_at')->get()
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|