Skip to content

Upgraded to Laravel 12 #629

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Apr 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<p align="center"><img src="https://user-images.githubusercontent.com/396987/82162573-6940f500-98c7-11ea-974e-888b4f866c74.jpg" alt="Laravel Starter - A CMS like modular starter project built with the latest Laravel framework."></p>

# Laravel Starter (based on Laravel 11.x)
**Laravel Starter** is a Laravel 11.x based simple starter project. Most of the commonly needed features of an application like `Authentication`, `Authorisation`, `Users` and `Role management`, `Application Backend`, `Backup`, `Log viewer` are available here. It is modular, so you may use this project as a base and build your own modules. A module can be used in any `Laravel Starter` based project.
# Laravel Starter (based on Laravel 12.x)
**Laravel Starter** is a Laravel 12.x based simple starter project. Most of the commonly needed features of an application like `Authentication`, `Authorisation`, `Users` and `Role management`, `Application Backend`, `Backup`, `Log viewer` are available here. It is modular, so you may use this project as a base and build your own modules. A module can be used in any `Laravel Starter` based project.
Here Frontend and Backend are completely separated with separate routes, controllers, and themes as well.

***Please let me know your feedback and comments.***
Expand Down
20 changes: 0 additions & 20 deletions app/Http/Controllers/Frontend/FrontendController.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,4 @@ public function index()
{
return view('frontend.index');
}

/**
* Privacy Policy Page.
*
* @return \Illuminate\Contracts\View\View
*/
public function privacy()
{
return view('frontend.privacy');
}

/**
* Terms & Conditions Page.
*
* @return \Illuminate\Contracts\View\View
*/
public function terms()
{
return view('frontend.terms');
}
}
4 changes: 3 additions & 1 deletion app/Listeners/Auth/UpdateLoginData.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ class UpdateLoginData
*
* @return void
*/
public function __construct() {}
public function __construct()
{
}

/**
* Handle the event.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ class UserCreatedNotifySuperUser implements ShouldQueue
*
* @return void
*/
public function __construct() {}
public function __construct()
{
}

/**
* Handle the event.
Expand Down
4 changes: 3 additions & 1 deletion app/Listeners/Backend/UserUpdated/UserUpdatedNotifyUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ class UserUpdatedNotifyUser implements ShouldQueue
*
* @return void
*/
public function __construct() {}
public function __construct()
{
}

/**
* Handle the event.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ class EmailNotificationOnUserRegistered implements ShouldQueue
*
* @return void
*/
public function __construct() {}
public function __construct()
{
}

/**
* Handle the event.
Expand Down
4 changes: 3 additions & 1 deletion app/Listeners/Frontend/UserUpdated/UserUpdatedNotifyUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ class UserUpdatedNotifyUser implements ShouldQueue
*
* @return void
*/
public function __construct() {}
public function __construct()
{
}

/**
* Handle the event.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ class UserUpdatedProfileUpdate implements ShouldQueue
*
* @return void
*/
public function __construct() {}
public function __construct()
{
}

/**
* Handle the event.
Expand Down
52 changes: 28 additions & 24 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,33 +15,33 @@
"type": "project",
"require": {
"php": "^8.2",
"arcanedev/log-viewer": "^11.0",
"intervention/image-laravel": "^1.2",
"intervention/image-laravel": "^1.5",
"laracasts/flash": "^3.2",
"laravel/framework": "^11.0",
"laravel/socialite": "^5.12",
"laravel/tinker": "^2.9",
"laravel/framework": "^12.0",
"laravel/pail": "^1.2",
"laravel/socialite": "^5.19",
"laravel/tinker": "^2.10",
"livewire/livewire": "^3.4",
"nasirkhan/module-manager": "^2.0",
"spatie/laravel-activitylog": "^4.8",
"spatie/laravel-backup": "^8.6",
"spatie/laravel-html": "^3.6",
"spatie/laravel-medialibrary": "^11.4",
"spatie/laravel-permission": "^6.4",
"sqids/sqids": "^0.4.1",
"unisharp/laravel-filemanager": "^2.9",
"yajra/laravel-datatables-oracle": "^11.0"
"nasirkhan/module-manager": "^3.0",
"spatie/laravel-activitylog": "^4.10",
"spatie/laravel-backup": "^9.2",
"spatie/laravel-html": "^3.12",
"spatie/laravel-medialibrary": "^11.12",
"spatie/laravel-permission": "^6.16",
"sqids/sqids": "^0.5.0",
"unisharp/laravel-filemanager": "^2.0",
"yajra/laravel-datatables-oracle": "^12.0"
},
"require-dev": {
"barryvdh/laravel-debugbar": "^3.12",
"fakerphp/faker": "^1.23",
"laravel/breeze": "^2.0",
"laravel/pint": "^1.13",
"laravel/sail": "^1.26",
"barryvdh/laravel-debugbar": "^3.15",
"fakerphp/faker": "^1.24",
"laravel/breeze": "^2.3",
"laravel/pail": "^1.2",
"laravel/pint": "^1.21",
"laravel/sail": "^1.41",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.0",
"phpunit/phpunit": "^10.5",
"spatie/laravel-ignition": "^2.4"
"nunomaduro/collision": "^8.7",
"phpunit/phpunit": "^11.5"
},
"autoload": {
"psr-4": {
Expand Down Expand Up @@ -73,7 +73,11 @@
"post-create-project-cmd": [
"@php artisan key:generate --ansi",
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"",
"@php artisan migrate --seed"
"@php artisan migrate --graceful --ansi"
],
"dev": [
"Composer\\Config::disableProcessTimeout",
"npx concurrently -c \"#93c5fd,#c4b5fd,#fb7185,#fdba74\" \"php artisan serve\" \"php artisan queue:listen --tries=1\" \"php artisan pail --timeout=0\" \"npm run dev\" --names=server,queue,logs,vite"
],
"clear-all": [
"composer dumpautoload -o",
Expand Down Expand Up @@ -105,4 +109,4 @@
},
"minimum-stability": "stable",
"prefer-stable": true
}
}
Loading