@@ -2,8 +2,8 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace App\Http\Controllers\Admin\Admin; |
| 4 | 4 | |
| 5 | -use Illuminate\Http\Request; |
|
| 6 | 5 | use App\Http\Controllers\Controller; |
| 6 | +use Illuminate\Http\Request; |
|
| 7 | 7 | |
| 8 | 8 | class ProfileController extends Controller |
| 9 | 9 | { |
@@ -2,8 +2,8 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace App\Providers; |
| 4 | 4 | |
| 5 | -use Illuminate\Support\Facades\Route; |
|
| 6 | 5 | use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider; |
| 6 | +use Illuminate\Support\Facades\Route; |
|
| 7 | 7 | |
| 8 | 8 | class RouteServiceProvider extends ServiceProvider |
| 9 | 9 | { |
@@ -3,8 +3,8 @@ |
||
| 3 | 3 | namespace App\DataTables; |
| 4 | 4 | |
| 5 | 5 | use App\Models\AdminUser; |
| 6 | -use Illuminate\Support\Facades\Auth; |
|
| 7 | 6 | use App\Support\Datatables\Services\DataTable; |
| 7 | +use Illuminate\Support\Facades\Auth; |
|
| 8 | 8 | |
| 9 | 9 | class AdminUsersDataTable extends DataTable |
| 10 | 10 | { |
@@ -2,14 +2,14 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace App\Exceptions; |
| 4 | 4 | |
| 5 | -use Exception; |
|
| 6 | 5 | use App\Http\ApiResponse; |
| 7 | 6 | use App\Jobs\SendBearyChat; |
| 7 | +use Exception; |
|
| 8 | 8 | use Illuminate\Auth\AuthenticationException; |
| 9 | -use Illuminate\Validation\ValidationException; |
|
| 10 | -use Symfony\Component\HttpKernel\Exception\HttpException; |
|
| 11 | 9 | use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; |
| 12 | 10 | use Illuminate\Foundation\Http\Exceptions\MaintenanceModeException; |
| 11 | +use Illuminate\Validation\ValidationException; |
|
| 12 | +use Symfony\Component\HttpKernel\Exception\HttpException; |
|
| 13 | 13 | |
| 14 | 14 | class Handler extends ExceptionHandler |
| 15 | 15 | { |
@@ -2,10 +2,10 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace App\Http\Controllers\Admin\Admin; |
| 4 | 4 | |
| 5 | +use App\DataTables\AdminUsersDataTable; |
|
| 6 | +use App\Http\Controllers\Controller; |
|
| 5 | 7 | use App\Models\AdminUser; |
| 6 | 8 | use Illuminate\Http\Request; |
| 7 | -use App\Http\Controllers\Controller; |
|
| 8 | -use App\DataTables\AdminUsersDataTable; |
|
| 9 | 9 | |
| 10 | 10 | class UserController extends Controller |
| 11 | 11 | { |
@@ -2,8 +2,8 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace App\Http\Controllers\Admin\Admin; |
| 4 | 4 | |
| 5 | -use Illuminate\Http\Request; |
|
| 6 | 5 | use App\Http\Controllers\Controller; |
| 6 | +use Illuminate\Http\Request; |
|
| 7 | 7 | |
| 8 | 8 | class ProfileController extends Controller |
| 9 | 9 | { |
@@ -2,10 +2,10 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace App\Http\Controllers\Admin\Auth; |
| 4 | 4 | |
| 5 | -use Password; |
|
| 6 | -use Illuminate\Http\Request; |
|
| 7 | 5 | use App\Http\Controllers\Controller; |
| 8 | 6 | use Illuminate\Foundation\Auth\ResetsPasswords; |
| 7 | +use Illuminate\Http\Request; |
|
| 8 | +use Password; |
|
| 9 | 9 | |
| 10 | 10 | class ResetPasswordController extends Controller |
| 11 | 11 | { |
@@ -2,11 +2,11 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace App\Jobs; |
| 4 | 4 | |
| 5 | -use Illuminate\Bus\Queueable; |
|
| 6 | 5 | use ElfSundae\BearyChat\Message; |
| 7 | -use Illuminate\Queue\SerializesModels; |
|
| 8 | -use Illuminate\Queue\InteractsWithQueue; |
|
| 6 | +use Illuminate\Bus\Queueable; |
|
| 9 | 7 | use Illuminate\Contracts\Queue\ShouldQueue; |
| 8 | +use Illuminate\Queue\InteractsWithQueue; |
|
| 9 | +use Illuminate\Queue\SerializesModels; |
|
| 10 | 10 | |
| 11 | 11 | class SendBearyChat implements ShouldQueue |
| 12 | 12 | { |
@@ -2,13 +2,13 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace App\Models; |
| 4 | 4 | |
| 5 | +use App\Notifications\ResetPassword; |
|
| 5 | 6 | use App\Support\Helper; |
| 6 | 7 | use App\Support\Image\Filters\Fit; |
| 7 | -use App\Notifications\ResetPassword; |
|
| 8 | 8 | use App\Support\Traits\ImageStorage; |
| 9 | -use Illuminate\Notifications\Notifiable; |
|
| 10 | 9 | use Iatstuti\Database\Support\NullableFields; |
| 11 | 10 | use Illuminate\Foundation\Auth\User as Authenticatable; |
| 11 | +use Illuminate\Notifications\Notifiable; |
|
| 12 | 12 | |
| 13 | 13 | class AdminUser extends Authenticatable |
| 14 | 14 | { |