initial commit

This commit is contained in:
Edward Tirado Jr 2026-02-18 00:15:02 -06:00
commit d96b74e6c1
88 changed files with 15238 additions and 0 deletions

View file

@ -0,0 +1,49 @@
<?php
namespace App\Http\Controllers;
use App\Models\Invitation;
use Illuminate\Http\Request;
class InvitationController extends Controller
{
/**
* Display a listing of the resource.
*/
public function index()
{
//
}
/**
* Store a newly created resource in storage.
*/
public function store(Request $request)
{
//
}
/**
* Display the specified resource.
*/
public function show(Invitation $invitation)
{
//
}
/**
* Update the specified resource in storage.
*/
public function update(Request $request, Invitation $invitation)
{
//
}
/**
* Remove the specified resource from storage.
*/
public function destroy(Invitation $invitation)
{
//
}
}