From 88ebedf5e69fe3ca5ef9ca5c476bd9b2e3d35b87 Mon Sep 17 00:00:00 2001 From: Nadim Salloum Date: Wed, 20 Oct 2021 18:06:52 +0200 Subject: [PATCH] remove unnecessary imports --- app/Http/Controllers/BrandController.php | 1 - app/Http/Controllers/CarController.php | 1 - app/Http/Controllers/ContactController.php | 3 --- app/Http/Controllers/DocumentController.php | 3 --- 4 files changed, 8 deletions(-) diff --git a/app/Http/Controllers/BrandController.php b/app/Http/Controllers/BrandController.php index 77e652d..8f7e196 100644 --- a/app/Http/Controllers/BrandController.php +++ b/app/Http/Controllers/BrandController.php @@ -4,7 +4,6 @@ namespace App\Http\Controllers; use App\Models\Brand; use Illuminate\Http\Request; -use Illuminate\Support\Facades\Redirect; class BrandController extends Controller { diff --git a/app/Http/Controllers/CarController.php b/app/Http/Controllers/CarController.php index f8e534c..8d0bc60 100644 --- a/app/Http/Controllers/CarController.php +++ b/app/Http/Controllers/CarController.php @@ -8,7 +8,6 @@ use Inertia\Inertia; use App\Models\Brand; use App\Exports\Export; use App\Models\Contract; -use App\Enums\InsuranceType; use Illuminate\Http\Request; use Illuminate\Support\Facades\DB; use Maatwebsite\Excel\Facades\Excel; diff --git a/app/Http/Controllers/ContactController.php b/app/Http/Controllers/ContactController.php index 6d56725..38093ab 100644 --- a/app/Http/Controllers/ContactController.php +++ b/app/Http/Controllers/ContactController.php @@ -2,14 +2,11 @@ namespace App\Http\Controllers; -use App\Models\Car; use Inertia\Inertia; use App\Exports\Export; use App\Models\Contact; use App\Models\Contract; -use App\Enums\InsuranceType; use Illuminate\Http\Request; -use Illuminate\Validation\Rule; use Maatwebsite\Excel\Facades\Excel; use Illuminate\Support\Facades\Redirect; diff --git a/app/Http/Controllers/DocumentController.php b/app/Http/Controllers/DocumentController.php index e795b33..77874ba 100644 --- a/app/Http/Controllers/DocumentController.php +++ b/app/Http/Controllers/DocumentController.php @@ -2,12 +2,9 @@ namespace App\Http\Controllers; -use App\Models\Contract; use App\Models\Document; use Illuminate\Http\Request; -use Illuminate\Support\Facades\Storage; use Illuminate\Support\Facades\Redirect; -use Illuminate\Database\Eloquent\Relations\Relation; class DocumentController extends Controller {