Skip to content

Commit

Permalink
Merge pull request #26 from zulfikar-ditya/main
Browse files Browse the repository at this point in the history
Upgrade to laravel 11 + darkmode in some pages
  • Loading branch information
zulfikar-ditya authored Oct 2, 2024
2 parents 71ec5a0 + 38a5dec commit 603b2e6
Show file tree
Hide file tree
Showing 30 changed files with 1,566 additions and 1,532 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ LOG_LEVEL=debug
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=tad_splade
DB_DATABASE=zera_dashboard
DB_USERNAME=root
DB_PASSWORD=

Expand Down
3 changes: 2 additions & 1 deletion app/Http/Controllers/Controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@

class Controller extends BaseController
{
use AuthorizesRequests, ValidatesRequests;
use AuthorizesRequests;
use ValidatesRequests;
use ControllerHelpers;
use SpladeHelpers;
}
79 changes: 39 additions & 40 deletions app/Http/Controllers/Documentation/DocumentationController.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
namespace App\Http\Controllers\Documentation;

use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use Illuminate\View\View;

class DocumentationController extends Controller
Expand All @@ -19,7 +18,7 @@ public function index()

/**
* Documentation for controller helper.
*
*
* @return \Illuminate\View\View
*/
public function controllerHelper(): View
Expand All @@ -31,7 +30,7 @@ public function controllerHelper(): View

/**
* Documentation for upload file helper.
*
*
* @return \Illuminate\View\View
*/
public function uploadFileHelper()
Expand All @@ -43,7 +42,7 @@ public function uploadFileHelper()

/**
* Documentation for splade helper.
*
*
* @return \Illuminate\View\View
*/
public function spladeHelper()
Expand All @@ -58,7 +57,7 @@ public function spladeHelper()
// ! PAGES DOCUMENTATION ---------------------------------------------------------------
/**
* Documentation for sidebar.
*
*
* @return \Illuminate\View\View
*/
public function color()
Expand All @@ -70,7 +69,7 @@ public function color()

/**
* Documentation for sidebar.
*
*
* @return \Illuminate\View\View
*/
public function sidebar()
Expand All @@ -82,7 +81,7 @@ public function sidebar()

/**
* Documentation for config.
*
*
* @return \Illuminate\View\View
*/
public function config()
Expand All @@ -96,7 +95,7 @@ public function config()
// ! COMPONENTS DOCUMENTATION ---------------------------------------------------------------
/**
* Documentation for alert.
*
*
* @return \Illuminate\View\View
*/
public function alert()
Expand All @@ -108,7 +107,7 @@ public function alert()

/**
* Documentation for badge.
*
*
* @return \Illuminate\View\View
*/
public function badge()
Expand All @@ -120,7 +119,7 @@ public function badge()

/**
* Documentation for breadcrumb.
*
*
* @return \Illuminate\View\View
*/
public function breadcrumb()
Expand All @@ -132,7 +131,7 @@ public function breadcrumb()

/**
* Documentation for button.
*
*
* @return \Illuminate\View\View
*/
public function button()
Expand All @@ -144,7 +143,7 @@ public function button()

/**
* Documentation for card.
*
*
* @return \Illuminate\View\View
*/
public function card()
Expand All @@ -156,7 +155,7 @@ public function card()

/**
* Documentation for collapse.
*
*
* @return \Illuminate\View\View
*/
public function collapse()
Expand All @@ -168,7 +167,7 @@ public function collapse()

/**
* Documentation for modal.
*
*
* @return \Illuminate\View\View
*/
public function modal()
Expand All @@ -180,7 +179,7 @@ public function modal()

/**
* Documentation for tooltip.
*
*
* @return \Illuminate\View\View
*/
public function tooltip()
Expand All @@ -194,7 +193,7 @@ public function tooltip()
// ! SPLADE COMPONENT DOCUMENTATION ---------------------------------------------------------------
/**
* Documentation for splade flash.
*
*
* @return \Illuminate\View\View
*/
public function flash()
Expand All @@ -206,7 +205,7 @@ public function flash()

/**
* Documentation for splade toast.
*
*
* @return \Illuminate\View\View
*/
public function toast()
Expand All @@ -218,7 +217,7 @@ public function toast()

/**
* Documentation for splade form.
*
*
* @return \Illuminate\View\View
*/
public function form()
Expand All @@ -230,7 +229,7 @@ public function form()

/**
* Documentation for splade link.
*
*
* @return \Illuminate\View\View
*/
public function link()
Expand All @@ -242,7 +241,7 @@ public function link()

/**
* Documentation for splade script.
*
*
* @return \Illuminate\View\View
*/
public function script()
Expand All @@ -254,7 +253,7 @@ public function script()

/**
* Documentation for splade toggle.
*
*
* @return \Illuminate\View\View
*/
public function toggle()
Expand All @@ -266,7 +265,7 @@ public function toggle()

/**
* Documentation for splade transition.
*
*
* @return \Illuminate\View\View
*/
public function transition()
Expand All @@ -278,7 +277,7 @@ public function transition()

/**
* Documentation for splade teleport.
*
*
* @return \Illuminate\View\View
*/
public function teleport()
Expand All @@ -292,7 +291,7 @@ public function teleport()
// ! SPLADE INPUT COMPONENT DOCUMENTATION ---------------------------------------------------------------
/**
* Documentation for splade input.
*
*
* @return \Illuminate\View\View
*/
public function inputOverview()
Expand All @@ -304,7 +303,7 @@ public function inputOverview()

/**
* Documentation for splade input.
*
*
* @return \Illuminate\View\View
*/
public function input()
Expand All @@ -316,7 +315,7 @@ public function input()

/**
* Documentation for splade input.
*
*
* @return \Illuminate\View\View
*/
public function inputFloat()
Expand All @@ -328,7 +327,7 @@ public function inputFloat()

/**
* Documentation for splade textarea.
*
*
* @return \Illuminate\View\View
*/
public function textarea()
Expand All @@ -340,7 +339,7 @@ public function textarea()

/**
* Documentation for splade select.
*
*
* @return \Illuminate\View\View
*/
public function select()
Expand All @@ -352,7 +351,7 @@ public function select()

/**
* Documentation for splade checkbox.
*
*
* @return \Illuminate\View\View
*/
public function checkbox()
Expand All @@ -364,7 +363,7 @@ public function checkbox()

/**
* Documentation for splade radio.
*
*
* @return \Illuminate\View\View
*/
public function radio()
Expand All @@ -376,7 +375,7 @@ public function radio()

/**
* Documentation for splade file.
*
*
* @return \Illuminate\View\View
*/
public function file()
Expand All @@ -388,7 +387,7 @@ public function file()

/**
* Documentation for splade group.
*
*
* @return \Illuminate\View\View
*/
public function group()
Expand All @@ -400,7 +399,7 @@ public function group()

/**
* Documentation for splade submit.
*
*
* @return \Illuminate\View\View
*/
public function submit()
Expand All @@ -412,7 +411,7 @@ public function submit()

/**
* Documentation for splade wysiwyg.
*
*
* @return \Illuminate\View\View
*/
public function wysiwyg()
Expand All @@ -424,7 +423,7 @@ public function wysiwyg()

/**
* Documentation for splade model binding.
*
*
* @return \Illuminate\View\View
*/
public function modelBinding()
Expand All @@ -439,7 +438,7 @@ public function modelBinding()
// ! SPLADE TABLE COMPONENT DOCUMENTATION ---------------------------------------------------------------
/**
* Documentation for splade table.
*
*
* @return \Illuminate\View\View
*/
public function tableOverview()
Expand All @@ -451,7 +450,7 @@ public function tableOverview()

/**
* Documentation for splade table Query Builder.
*
*
* @return \Illuminate\View\View
*/
public function tableQueryBuilder()
Expand All @@ -463,7 +462,7 @@ public function tableQueryBuilder()

/**
* Documentation for splade table Bulk Action.
*
*
* @return \Illuminate\View\View
*/
public function tableBulkAction()
Expand All @@ -475,7 +474,7 @@ public function tableBulkAction()

/**
* Documentation for splade table Export.
*
*
* @return \Illuminate\View\View
*/
public function tableExport()
Expand All @@ -487,7 +486,7 @@ public function tableExport()

/**
* Documentation for splade table Spatie Query Builder.
*
*
* @return \Illuminate\View\View
*/
public function tableSpatieQueryBuilder()
Expand Down
5 changes: 0 additions & 5 deletions app/Http/Controllers/Test/TestController.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@
namespace App\Http\Controllers\Test;

use App\Http\Controllers\Controller;
use App\Models\User;
use App\Traits\UploadFile;
use GuzzleHttp\Psr7\Response;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Validator;

class TestController extends Controller
{
Expand Down
Loading

0 comments on commit 603b2e6

Please sign in to comment.