Skip to content

Instantly share code, notes, and snippets.

@raksit31667
Created May 2, 2024 17:37
Show Gist options
  • Save raksit31667/195bde659ea11d73689227875d0307ea to your computer and use it in GitHub Desktop.
Save raksit31667/195bde659ea11d73689227875d0307ea to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Controllers;
use App\Models\User;
use Illuminate\Http\JsonResponse;
class UserController extends Controller
{
function show(string $username): JsonResponse
{
$user = User::findByName($username);
return response()->json($user);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment