Skip to content

Commit

Permalink
php artisan make:controller Api\AttendeeController --api
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy committed Aug 24, 2023
1 parent 1b7a1df commit cf71028
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions app/Http/Controllers/Api/AttendeeController.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<?php

namespace App\Http\Controllers\Api;

use App\Http\Controllers\Controller;
use Illuminate\Http\Request;

class AttendeeController 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(string $id)
{
//
}

/**
* Update the specified resource in storage.
*/
public function update(Request $request, string $id)
{
//
}

/**
* Remove the specified resource from storage.
*/
public function destroy(string $id)
{
//
}
}

0 comments on commit cf71028

Please sign in to comment.