deploy commit

This commit is contained in:
2026-07-15 17:23:15 +07:00
commit b94ef4a695
148 changed files with 14831 additions and 0 deletions
@@ -0,0 +1,66 @@
<?php
namespace App\Http\Controllers\Api\V1;
use App\Http\Requests\V1\StoreVerificationRequest;
use App\Http\Requests\V1\UpdateVerificationRequest;
use App\Models\Verification;
class VerificationController
{
/**
* Display a listing of the resource.
*/
public function index()
{
//
}
/**
* Show the form for creating a new resource.
*/
public function create()
{
//
}
/**
* Store a newly created resource in storage.
*/
public function store(StoreVerificationRequest $request)
{
//
}
/**
* Display the specified resource.
*/
public function show(Verification $verification)
{
//
}
/**
* Show the form for editing the specified resource.
*/
public function edit(Verification $verification)
{
//
}
/**
* Update the specified resource in storage.
*/
public function update(UpdateVerificationRequest $request, Verification $verification)
{
//
}
/**
* Remove the specified resource from storage.
*/
public function destroy(Verification $verification)
{
//
}
}