refactor(database): update import statements for Auth in database components

This commit is contained in:
Andras Bacsai 2025-03-26 18:31:42 +01:00
parent f3f5459983
commit 1857a54d92
5 changed files with 5 additions and 5 deletions

View file

@ -8,9 +8,9 @@
use App\Models\Server;
use App\Models\SslCertificate;
use App\Models\StandaloneMariadb;
use Auth;
use Carbon\Carbon;
use Exception;
use Illuminate\Support\Facades\Auth;
use Livewire\Component;
class General extends Component

View file

@ -8,9 +8,9 @@
use App\Models\Server;
use App\Models\SslCertificate;
use App\Models\StandaloneMongodb;
use Auth;
use Carbon\Carbon;
use Exception;
use Illuminate\Support\Facades\Auth;
use Livewire\Component;
class General extends Component

View file

@ -8,9 +8,9 @@
use App\Models\Server;
use App\Models\SslCertificate;
use App\Models\StandaloneMysql;
use Auth;
use Carbon\Carbon;
use Exception;
use Illuminate\Support\Facades\Auth;
use Livewire\Component;
class General extends Component

View file

@ -8,9 +8,9 @@
use App\Models\Server;
use App\Models\SslCertificate;
use App\Models\StandalonePostgresql;
use Auth;
use Carbon\Carbon;
use Exception;
use Illuminate\Support\Facades\Auth;
use Livewire\Component;
class General extends Component

View file

@ -8,9 +8,9 @@
use App\Models\Server;
use App\Models\SslCertificate;
use App\Models\StandaloneRedis;
use Auth;
use Carbon\Carbon;
use Exception;
use Illuminate\Support\Facades\Auth;
use Livewire\Component;
class General extends Component