Move Mobile/AuthController to Company/Auth and remove Mobile namespace

The Mobile namespace only contained an API auth controller (Sanctum token
login/logout/check) that is not mobile-specific. Relocated to
Company/Auth/AuthController alongside the other auth controllers.
This commit is contained in:
Darko Gjorgjijoski
2026-04-03 19:19:09 +02:00
parent 64c481e963
commit 4f47db9258
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
<?php
namespace App\Http\Controllers\Company\Mobile;
namespace App\Http\Controllers\Company\Auth;
use App\Http\Controllers\Controller;
use App\Http\Requests\LoginRequest;