Laravel controller

From AWVVO
Revision as of 12:41, 18 January 2025 by Admin (talk | contribs) (Created page with "== action template == <syntaxhighlight lang="php" copy> public function index() { $data = []; return response()->json($data); } </syntaxhighlight>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

action template

public function index()
{
    $data = [];

    return response()->json($data);
}