Skip to content

Commit

Permalink
feat(admin): add admin method [index]
Browse files Browse the repository at this point in the history
  • Loading branch information
tikrack committed Jan 29, 2025
1 parent 097ca42 commit 6ec3894
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion app/Http/Controllers/Admin/AdminController.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,15 @@
namespace App\Http\Controllers\Admin;

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

class AdminController extends Controller
{
//
use ApiResponseTrait;

public function index()
{

}
}

0 comments on commit 6ec3894

Please sign in to comment.