Update pacakages (Supports PHP ^8.0)
This commit is contained in:
parent
9a9de673a1
commit
6aa0ac4bea
|
@ -11,7 +11,6 @@ use Illuminate\Support\Facades\Gate;
|
|||
use Modules\Adjustment\Entities\AdjustedProduct;
|
||||
use Modules\Adjustment\Entities\Adjustment;
|
||||
use Modules\Product\Entities\Product;
|
||||
use Modules\Product\Notifications\NotifyQuantityAlert;
|
||||
|
||||
class AdjustmentController extends Controller
|
||||
{
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
> **Important Note:** "Triangle POS" uses Laravel Snappy Package for PDFs. If you are using Linux then no configuration is needed. But in other Operating Systems please refer to [Laravel Snappy Documentation](https://github.com/barryvdh/laravel-snappy).
|
||||
|
||||
# Admin Credentials
|
||||
> Email: admin@test.com || Password: 12345678
|
||||
> Email: super.admin@test.com || Password: 12345678
|
||||
|
||||
## Demo
|
||||

|
||||
|
|
|
@ -49,6 +49,6 @@ class LoginController extends Controller
|
|||
]);
|
||||
}
|
||||
|
||||
return next($request);
|
||||
return redirect()->intended(RouteServiceProvider::HOME);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"laravel/ui": "^3.3",
|
||||
"livewire/livewire": "^2.5",
|
||||
"milon/barcode": "^8.0",
|
||||
"nwidart/laravel-modules": "^8.2",
|
||||
"nwidart/laravel-modules": "8.2",
|
||||
"realrashid/sweet-alert": "^4.0",
|
||||
"spatie/laravel-medialibrary": "^9.0.0",
|
||||
"spatie/laravel-permission": "^4.2",
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -18,7 +18,7 @@ class SuperUserSeeder extends Seeder
|
|||
{
|
||||
$user = User::create([
|
||||
'name' => 'Administrator',
|
||||
'email' => 'admin@test.com',
|
||||
'email' => 'super.admin@test.com',
|
||||
'password' => Hash::make(12345678),
|
||||
'is_active' => 1
|
||||
]);
|
||||
|
|
Loading…
Reference in New Issue