Some Changes & Tweaks

This commit is contained in:
Fahim 2021-08-14 02:59:48 +06:00
parent bb09d98e72
commit 528089dd3f
6 changed files with 690 additions and 443 deletions

View File

@ -1,9 +1,11 @@
APP_NAME=Laravel APP_NAME="Triangle POS"
APP_ENV=local APP_ENV=local
APP_KEY= APP_KEY=
APP_DEBUG=true APP_DEBUG=true
APP_URL=http://localhost APP_URL=http://localhost
DEBUGBAR_ENABLED=false
LOG_CHANNEL=stack LOG_CHANNEL=stack
LOG_LEVEL=debug LOG_LEVEL=debug

View File

@ -17,11 +17,11 @@ class StoreSmtpSettingsRequest extends FormRequest
return [ return [
'mail_mailer' => 'required|string|max:50', 'mail_mailer' => 'required|string|max:50',
'mail_host' => 'required|string|max:50', 'mail_host' => 'required|string|max:50',
'mail_port' => 'required|numeric|max:50', 'mail_port' => 'required|numeric',
'mail_username' => 'required|string|max:50', 'mail_username' => 'nullable|string|max:50',
'mail_password' => 'required|string|max:50', 'mail_password' => 'nullable|string|max:50',
'mail_encryption' => 'required|string|max:50', 'mail_encryption' => 'nullable|string|max:50',
'mail_from_address' => 'required|string|max:50', 'mail_from_address' => 'nullable|string|max:50',
'mail_from_name' => 'required|string|max:50', 'mail_from_name' => 'required|string|max:50',
]; ];
} }

View File

@ -12,13 +12,12 @@
"fruitcake/laravel-cors": "^2.0", "fruitcake/laravel-cors": "^2.0",
"guzzlehttp/guzzle": "^7.0.1", "guzzlehttp/guzzle": "^7.0.1",
"h4cc/wkhtmltopdf-amd64": "^0.12.4", "h4cc/wkhtmltopdf-amd64": "^0.12.4",
"infyomlabs/laravel-ui-coreui": "^3.0",
"laravel/framework": "^8.40", "laravel/framework": "^8.40",
"laravel/tinker": "^2.5", "laravel/tinker": "^2.5",
"laravel/ui": "^3.3",
"livewire/livewire": "^2.5", "livewire/livewire": "^2.5",
"milon/barcode": "^8.0", "milon/barcode": "^8.0",
"nwidart/laravel-modules": "^8.2", "nwidart/laravel-modules": "^8.2",
"rachidlaasri/laravel-installer": "^4.1",
"realrashid/sweet-alert": "^4.0", "realrashid/sweet-alert": "^4.0",
"spatie/laravel-medialibrary": "^9.0.0", "spatie/laravel-medialibrary": "^9.0.0",
"spatie/laravel-permission": "^4.2", "spatie/laravel-permission": "^4.2",
@ -69,10 +68,7 @@
"config": { "config": {
"optimize-autoloader": true, "optimize-autoloader": true,
"preferred-install": "dist", "preferred-install": "dist",
"sort-packages": true, "sort-packages": true
"platform": {
"php": "7.4"
}
}, },
"minimum-stability": "dev", "minimum-stability": "dev",
"prefer-stable": true "prefer-stable": true

1106
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -169,7 +169,6 @@ return [
Spatie\Permission\PermissionServiceProvider::class, Spatie\Permission\PermissionServiceProvider::class,
Milon\Barcode\BarcodeServiceProvider::class, Milon\Barcode\BarcodeServiceProvider::class,
Barryvdh\Snappy\ServiceProvider::class, Barryvdh\Snappy\ServiceProvider::class,
RachidLaasri\LaravelInstaller\Providers\LaravelInstallerServiceProvider::class,
/* /*
* Application Service Providers... * Application Service Providers...
*/ */

View File

@ -7,7 +7,7 @@ return [
* Shared translations. * Shared translations.
* *
*/ */
'title' => 'Laravel Installer', 'title' => 'Triangle POS',
'next' => 'Next Step', 'next' => 'Next Step',
'back' => 'Previous', 'back' => 'Previous',
'finish' => 'Install', 'finish' => 'Install',
@ -22,7 +22,7 @@ return [
*/ */
'welcome' => [ 'welcome' => [
'templateTitle' => 'Welcome', 'templateTitle' => 'Welcome',
'title' => 'Laravel Installer', 'title' => 'Install Triangle POS',
'message' => 'Easy Installation and Setup Wizard.', 'message' => 'Easy Installation and Setup Wizard.',
'next' => 'Check Requirements', 'next' => 'Check Requirements',
], ],