From 8e2bca9c259bfe2eb9da340deff8f3d86a923d26 Mon Sep 17 00:00:00 2001 From: nejcc Date: Thu, 10 Oct 2024 20:47:49 +0200 Subject: [PATCH] update --- .../Controllers/ExampleController.php | 15 --------------- app/Plugins/ExamplePlugin/Models/Example.php | 10 ---------- app/Plugins/ExamplePlugin/Routes/api.php | 5 ----- app/Plugins/ExamplePlugin/Routes/web.php | 8 -------- .../ExamplePlugin/Views/create.blade.php | 9 --------- .../ExamplePlugin/Views/index.blade.php | 9 --------- .../ExamplePlugin/Views/show.blade.php | 9 --------- .../ExamplePlugin/Views/update.blade.php | 9 --------- .../NejcPlugin/Controllers/NejcController.php | 15 --------------- app/Plugins/NejcPlugin/Models/Nejc.php | 10 ---------- app/Plugins/NejcPlugin/Routes/api.php | 5 ----- app/Plugins/NejcPlugin/Routes/web.php | 8 -------- app/Plugins/NejcPlugin/Views/create.blade.php | 19 ------------------- app/Plugins/NejcPlugin/Views/index.blade.php | 19 ------------------- app/Plugins/NejcPlugin/Views/show.blade.php | 19 ------------------- app/Plugins/NejcPlugin/Views/update.blade.php | 19 ------------------- app/Plugins/PluginController.php | 16 ---------------- app/helpers.php | 2 +- 18 files changed, 1 insertion(+), 205 deletions(-) delete mode 100644 app/Plugins/ExamplePlugin/Controllers/ExampleController.php delete mode 100644 app/Plugins/ExamplePlugin/Models/Example.php delete mode 100644 app/Plugins/ExamplePlugin/Routes/api.php delete mode 100644 app/Plugins/ExamplePlugin/Routes/web.php delete mode 100644 app/Plugins/ExamplePlugin/Views/create.blade.php delete mode 100644 app/Plugins/ExamplePlugin/Views/index.blade.php delete mode 100644 app/Plugins/ExamplePlugin/Views/show.blade.php delete mode 100644 app/Plugins/ExamplePlugin/Views/update.blade.php delete mode 100644 app/Plugins/NejcPlugin/Controllers/NejcController.php delete mode 100644 app/Plugins/NejcPlugin/Models/Nejc.php delete mode 100644 app/Plugins/NejcPlugin/Routes/api.php delete mode 100644 app/Plugins/NejcPlugin/Routes/web.php delete mode 100644 app/Plugins/NejcPlugin/Views/create.blade.php delete mode 100644 app/Plugins/NejcPlugin/Views/index.blade.php delete mode 100644 app/Plugins/NejcPlugin/Views/show.blade.php delete mode 100644 app/Plugins/NejcPlugin/Views/update.blade.php delete mode 100644 app/Plugins/PluginController.php diff --git a/app/Plugins/ExamplePlugin/Controllers/ExampleController.php b/app/Plugins/ExamplePlugin/Controllers/ExampleController.php deleted file mode 100644 index a48dca9..0000000 --- a/app/Plugins/ExamplePlugin/Controllers/ExampleController.php +++ /dev/null @@ -1,15 +0,0 @@ -group(function () { - Route::get('/', [App\Plugins\ExamplePlugin\Controllers\ExampleController::class, 'index']); -}); diff --git a/app/Plugins/ExamplePlugin/Views/create.blade.php b/app/Plugins/ExamplePlugin/Views/create.blade.php deleted file mode 100644 index 9a321c8..0000000 --- a/app/Plugins/ExamplePlugin/Views/create.blade.php +++ /dev/null @@ -1,9 +0,0 @@ - - - - ExamplePlugin Plugin Index View - - -

ExamplePlugin Plugin Index View

- - diff --git a/app/Plugins/ExamplePlugin/Views/index.blade.php b/app/Plugins/ExamplePlugin/Views/index.blade.php deleted file mode 100644 index 9a321c8..0000000 --- a/app/Plugins/ExamplePlugin/Views/index.blade.php +++ /dev/null @@ -1,9 +0,0 @@ - - - - ExamplePlugin Plugin Index View - - -

ExamplePlugin Plugin Index View

- - diff --git a/app/Plugins/ExamplePlugin/Views/show.blade.php b/app/Plugins/ExamplePlugin/Views/show.blade.php deleted file mode 100644 index 9a321c8..0000000 --- a/app/Plugins/ExamplePlugin/Views/show.blade.php +++ /dev/null @@ -1,9 +0,0 @@ - - - - ExamplePlugin Plugin Index View - - -

ExamplePlugin Plugin Index View

- - diff --git a/app/Plugins/ExamplePlugin/Views/update.blade.php b/app/Plugins/ExamplePlugin/Views/update.blade.php deleted file mode 100644 index 9a321c8..0000000 --- a/app/Plugins/ExamplePlugin/Views/update.blade.php +++ /dev/null @@ -1,9 +0,0 @@ - - - - ExamplePlugin Plugin Index View - - -

ExamplePlugin Plugin Index View

- - diff --git a/app/Plugins/NejcPlugin/Controllers/NejcController.php b/app/Plugins/NejcPlugin/Controllers/NejcController.php deleted file mode 100644 index b37d9df..0000000 --- a/app/Plugins/NejcPlugin/Controllers/NejcController.php +++ /dev/null @@ -1,15 +0,0 @@ -group(function () { - Route::get('/', [App\Plugins\ExamplePlugin\Controllers\ExampleController::class, 'index']); -}); diff --git a/app/Plugins/NejcPlugin/Views/create.blade.php b/app/Plugins/NejcPlugin/Views/create.blade.php deleted file mode 100644 index 61b8a00..0000000 --- a/app/Plugins/NejcPlugin/Views/create.blade.php +++ /dev/null @@ -1,19 +0,0 @@ -@extends('layouts.master') - -@section('title', __('Dashboard')) - -@section('content') -

NejcPlugin Plugin Index View

-@endsection - -@section('modal') - -@endsection - -@push('css') - -@endpush - -@push('js') - -@endpush diff --git a/app/Plugins/NejcPlugin/Views/index.blade.php b/app/Plugins/NejcPlugin/Views/index.blade.php deleted file mode 100644 index 61b8a00..0000000 --- a/app/Plugins/NejcPlugin/Views/index.blade.php +++ /dev/null @@ -1,19 +0,0 @@ -@extends('layouts.master') - -@section('title', __('Dashboard')) - -@section('content') -

NejcPlugin Plugin Index View

-@endsection - -@section('modal') - -@endsection - -@push('css') - -@endpush - -@push('js') - -@endpush diff --git a/app/Plugins/NejcPlugin/Views/show.blade.php b/app/Plugins/NejcPlugin/Views/show.blade.php deleted file mode 100644 index 61b8a00..0000000 --- a/app/Plugins/NejcPlugin/Views/show.blade.php +++ /dev/null @@ -1,19 +0,0 @@ -@extends('layouts.master') - -@section('title', __('Dashboard')) - -@section('content') -

NejcPlugin Plugin Index View

-@endsection - -@section('modal') - -@endsection - -@push('css') - -@endpush - -@push('js') - -@endpush diff --git a/app/Plugins/NejcPlugin/Views/update.blade.php b/app/Plugins/NejcPlugin/Views/update.blade.php deleted file mode 100644 index 61b8a00..0000000 --- a/app/Plugins/NejcPlugin/Views/update.blade.php +++ /dev/null @@ -1,19 +0,0 @@ -@extends('layouts.master') - -@section('title', __('Dashboard')) - -@section('content') -

NejcPlugin Plugin Index View

-@endsection - -@section('modal') - -@endsection - -@push('css') - -@endpush - -@push('js') - -@endpush diff --git a/app/Plugins/PluginController.php b/app/Plugins/PluginController.php deleted file mode 100644 index da1a679..0000000 --- a/app/Plugins/PluginController.php +++ /dev/null @@ -1,16 +0,0 @@ -