mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 08:12:15 +00:00
Fix backend code styling
This commit is contained in:
@@ -191,44 +191,44 @@ return [
|
||||
*/
|
||||
|
||||
'aliases' => [
|
||||
'App' => Illuminate\Support\Facades\App::class,
|
||||
'Arr' => Illuminate\Support\Arr::class,
|
||||
'Artisan' => Illuminate\Support\Facades\Artisan::class,
|
||||
'Auth' => Illuminate\Support\Facades\Auth::class,
|
||||
'Blade' => Illuminate\Support\Facades\Blade::class,
|
||||
'Broadcast' => Illuminate\Support\Facades\Broadcast::class,
|
||||
'Bus' => Illuminate\Support\Facades\Bus::class,
|
||||
'Cache' => Illuminate\Support\Facades\Cache::class,
|
||||
'Config' => Illuminate\Support\Facades\Config::class,
|
||||
'Cookie' => Illuminate\Support\Facades\Cookie::class,
|
||||
'Crypt' => Illuminate\Support\Facades\Crypt::class,
|
||||
'DB' => Illuminate\Support\Facades\DB::class,
|
||||
'Eloquent' => Illuminate\Database\Eloquent\Model::class,
|
||||
'Event' => Illuminate\Support\Facades\Event::class,
|
||||
'File' => Illuminate\Support\Facades\File::class,
|
||||
'Gate' => Illuminate\Support\Facades\Gate::class,
|
||||
'Hash' => Illuminate\Support\Facades\Hash::class,
|
||||
'Lang' => Illuminate\Support\Facades\Lang::class,
|
||||
'Log' => Illuminate\Support\Facades\Log::class,
|
||||
'Mail' => Illuminate\Support\Facades\Mail::class,
|
||||
'App' => Illuminate\Support\Facades\App::class,
|
||||
'Arr' => Illuminate\Support\Arr::class,
|
||||
'Artisan' => Illuminate\Support\Facades\Artisan::class,
|
||||
'Auth' => Illuminate\Support\Facades\Auth::class,
|
||||
'Blade' => Illuminate\Support\Facades\Blade::class,
|
||||
'Broadcast' => Illuminate\Support\Facades\Broadcast::class,
|
||||
'Bus' => Illuminate\Support\Facades\Bus::class,
|
||||
'Cache' => Illuminate\Support\Facades\Cache::class,
|
||||
'Config' => Illuminate\Support\Facades\Config::class,
|
||||
'Cookie' => Illuminate\Support\Facades\Cookie::class,
|
||||
'Crypt' => Illuminate\Support\Facades\Crypt::class,
|
||||
'DB' => Illuminate\Support\Facades\DB::class,
|
||||
'Eloquent' => Illuminate\Database\Eloquent\Model::class,
|
||||
'Event' => Illuminate\Support\Facades\Event::class,
|
||||
'File' => Illuminate\Support\Facades\File::class,
|
||||
'Gate' => Illuminate\Support\Facades\Gate::class,
|
||||
'Hash' => Illuminate\Support\Facades\Hash::class,
|
||||
'Lang' => Illuminate\Support\Facades\Lang::class,
|
||||
'Log' => Illuminate\Support\Facades\Log::class,
|
||||
'Mail' => Illuminate\Support\Facades\Mail::class,
|
||||
'Notification' => Illuminate\Support\Facades\Notification::class,
|
||||
'Password' => Illuminate\Support\Facades\Password::class,
|
||||
'Queue' => Illuminate\Support\Facades\Queue::class,
|
||||
'Redirect' => Illuminate\Support\Facades\Redirect::class,
|
||||
'Redis' => Illuminate\Support\Facades\Redis::class,
|
||||
'Request' => Illuminate\Support\Facades\Request::class,
|
||||
'Response' => Illuminate\Support\Facades\Response::class,
|
||||
'Route' => Illuminate\Support\Facades\Route::class,
|
||||
'Schema' => Illuminate\Support\Facades\Schema::class,
|
||||
'Session' => Illuminate\Support\Facades\Session::class,
|
||||
'Storage' => Illuminate\Support\Facades\Storage::class,
|
||||
'Str' => Illuminate\Support\Str::class,
|
||||
'URL' => Illuminate\Support\Facades\URL::class,
|
||||
'Validator' => Illuminate\Support\Facades\Validator::class,
|
||||
'View' => Illuminate\Support\Facades\View::class,
|
||||
'Image' => Intervention\Image\Facades\Image::class,
|
||||
'Stripe' => Cartalyst\Stripe\Laravel\Facades\Stripe::class,
|
||||
'Crawler' => Jaybizzle\LaravelCrawlerDetect\Facades\LaravelCrawlerDetect::class,
|
||||
'Password' => Illuminate\Support\Facades\Password::class,
|
||||
'Queue' => Illuminate\Support\Facades\Queue::class,
|
||||
'Redirect' => Illuminate\Support\Facades\Redirect::class,
|
||||
'Redis' => Illuminate\Support\Facades\Redis::class,
|
||||
'Request' => Illuminate\Support\Facades\Request::class,
|
||||
'Response' => Illuminate\Support\Facades\Response::class,
|
||||
'Route' => Illuminate\Support\Facades\Route::class,
|
||||
'Schema' => Illuminate\Support\Facades\Schema::class,
|
||||
'Session' => Illuminate\Support\Facades\Session::class,
|
||||
'Storage' => Illuminate\Support\Facades\Storage::class,
|
||||
'Str' => Illuminate\Support\Str::class,
|
||||
'URL' => Illuminate\Support\Facades\URL::class,
|
||||
'Validator' => Illuminate\Support\Facades\Validator::class,
|
||||
'View' => Illuminate\Support\Facades\View::class,
|
||||
'Image' => Intervention\Image\Facades\Image::class,
|
||||
'Stripe' => Cartalyst\Stripe\Laravel\Facades\Stripe::class,
|
||||
'Crawler' => Jaybizzle\LaravelCrawlerDetect\Facades\LaravelCrawlerDetect::class,
|
||||
//'Madzipper' => Madnest\Madzipper\Madzipper::class,
|
||||
],
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ return [
|
||||
*/
|
||||
|
||||
'defaults' => [
|
||||
'guard' => 'web',
|
||||
'guard' => 'web',
|
||||
'passwords' => 'users',
|
||||
],
|
||||
|
||||
@@ -36,14 +36,14 @@ return [
|
||||
|
||||
'guards' => [
|
||||
'web' => [
|
||||
'driver' => 'session',
|
||||
'driver' => 'session',
|
||||
'provider' => 'users',
|
||||
],
|
||||
|
||||
'api' => [
|
||||
'driver' => 'token',
|
||||
'driver' => 'token',
|
||||
'provider' => 'users',
|
||||
'hash' => false,
|
||||
'hash' => false,
|
||||
],
|
||||
],
|
||||
|
||||
@@ -67,7 +67,7 @@ return [
|
||||
'providers' => [
|
||||
'users' => [
|
||||
'driver' => 'eloquent',
|
||||
'model' => App\Models\User::class,
|
||||
'model' => App\Models\User::class,
|
||||
],
|
||||
|
||||
// 'users' => [
|
||||
@@ -94,8 +94,8 @@ return [
|
||||
'passwords' => [
|
||||
'users' => [
|
||||
'provider' => 'users',
|
||||
'table' => 'password_resets',
|
||||
'expire' => 60,
|
||||
'table' => 'password_resets',
|
||||
'expire' => 60,
|
||||
'throttle' => 60,
|
||||
],
|
||||
],
|
||||
|
||||
@@ -145,12 +145,12 @@ return [
|
||||
*/
|
||||
'notifications' => [
|
||||
'notifications' => [
|
||||
\Spatie\Backup\Notifications\Notifications\BackupHasFailed::class => ['mail'],
|
||||
\Spatie\Backup\Notifications\Notifications\BackupHasFailed::class => ['mail'],
|
||||
\Spatie\Backup\Notifications\Notifications\UnhealthyBackupWasFound::class => ['mail'],
|
||||
\Spatie\Backup\Notifications\Notifications\CleanupHasFailed::class => ['mail'],
|
||||
\Spatie\Backup\Notifications\Notifications\BackupWasSuccessful::class => ['mail'],
|
||||
\Spatie\Backup\Notifications\Notifications\HealthyBackupWasFound::class => ['mail'],
|
||||
\Spatie\Backup\Notifications\Notifications\CleanupWasSuccessful::class => ['mail'],
|
||||
\Spatie\Backup\Notifications\Notifications\CleanupHasFailed::class => ['mail'],
|
||||
\Spatie\Backup\Notifications\Notifications\BackupWasSuccessful::class => ['mail'],
|
||||
\Spatie\Backup\Notifications\Notifications\HealthyBackupWasFound::class => ['mail'],
|
||||
\Spatie\Backup\Notifications\Notifications\CleanupWasSuccessful::class => ['mail'],
|
||||
],
|
||||
|
||||
/*
|
||||
@@ -189,10 +189,10 @@ return [
|
||||
*/
|
||||
'monitor_backups' => [
|
||||
[
|
||||
'name' => env('APP_NAME', 'laravel-backup'),
|
||||
'disks' => ['local'],
|
||||
'name' => env('APP_NAME', 'laravel-backup'),
|
||||
'disks' => ['local'],
|
||||
'health_checks' => [
|
||||
\Spatie\Backup\Tasks\Monitor\HealthChecks\MaximumAgeInDays::class => 1,
|
||||
\Spatie\Backup\Tasks\Monitor\HealthChecks\MaximumAgeInDays::class => 1,
|
||||
\Spatie\Backup\Tasks\Monitor\HealthChecks\MaximumStorageInMegabytes::class => 5000,
|
||||
],
|
||||
],
|
||||
|
||||
@@ -29,18 +29,18 @@ return [
|
||||
|
||||
'connections' => [
|
||||
'pusher' => [
|
||||
'driver' => 'pusher',
|
||||
'key' => env('PUSHER_APP_KEY'),
|
||||
'secret' => env('PUSHER_APP_SECRET'),
|
||||
'app_id' => env('PUSHER_APP_ID'),
|
||||
'driver' => 'pusher',
|
||||
'key' => env('PUSHER_APP_KEY'),
|
||||
'secret' => env('PUSHER_APP_SECRET'),
|
||||
'app_id' => env('PUSHER_APP_ID'),
|
||||
'options' => [
|
||||
'cluster' => env('PUSHER_APP_CLUSTER'),
|
||||
'useTLS' => true,
|
||||
'useTLS' => true,
|
||||
],
|
||||
],
|
||||
|
||||
'redis' => [
|
||||
'driver' => 'redis',
|
||||
'driver' => 'redis',
|
||||
'connection' => 'default',
|
||||
],
|
||||
|
||||
|
||||
@@ -40,20 +40,20 @@ return [
|
||||
],
|
||||
|
||||
'database' => [
|
||||
'driver' => 'database',
|
||||
'table' => 'cache',
|
||||
'driver' => 'database',
|
||||
'table' => 'cache',
|
||||
'connection' => null,
|
||||
],
|
||||
|
||||
'file' => [
|
||||
'driver' => 'file',
|
||||
'path' => storage_path('framework/cache/data'),
|
||||
'path' => storage_path('framework/cache/data'),
|
||||
],
|
||||
|
||||
'memcached' => [
|
||||
'driver' => 'memcached',
|
||||
'driver' => 'memcached',
|
||||
'persistent_id' => env('MEMCACHED_PERSISTENT_ID'),
|
||||
'sasl' => [
|
||||
'sasl' => [
|
||||
env('MEMCACHED_USERNAME'),
|
||||
env('MEMCACHED_PASSWORD'),
|
||||
],
|
||||
@@ -62,24 +62,24 @@ return [
|
||||
],
|
||||
'servers' => [
|
||||
[
|
||||
'host' => env('MEMCACHED_HOST', '127.0.0.1'),
|
||||
'port' => env('MEMCACHED_PORT', 11211),
|
||||
'host' => env('MEMCACHED_HOST', '127.0.0.1'),
|
||||
'port' => env('MEMCACHED_PORT', 11211),
|
||||
'weight' => 100,
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
'redis' => [
|
||||
'driver' => 'redis',
|
||||
'driver' => 'redis',
|
||||
'connection' => 'cache',
|
||||
],
|
||||
|
||||
'dynamodb' => [
|
||||
'driver' => 'dynamodb',
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
||||
'table' => env('DYNAMODB_CACHE_TABLE', 'cache'),
|
||||
'driver' => 'dynamodb',
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
||||
'table' => env('DYNAMODB_CACHE_TABLE', 'cache'),
|
||||
'endpoint' => env('DYNAMODB_ENDPOINT'),
|
||||
],
|
||||
],
|
||||
|
||||
@@ -41,7 +41,7 @@ return [
|
||||
*/
|
||||
|
||||
'webhook' => [
|
||||
'secret' => env('STRIPE_WEBHOOK_SECRET'),
|
||||
'secret' => env('STRIPE_WEBHOOK_SECRET'),
|
||||
'tolerance' => env('STRIPE_WEBHOOK_TOLERANCE', 300),
|
||||
],
|
||||
|
||||
|
||||
@@ -4,177 +4,177 @@ return [
|
||||
'pages' => [
|
||||
[
|
||||
'visibility' => 1,
|
||||
'title' => 'Terms of Service',
|
||||
'slug' => 'terms-of-service',
|
||||
'content' => 'Laoreet cum hendrerit iaculis arcu phasellus congue et elementum, pharetra risus imperdiet aptent posuere rutrum parturient blandit, dapibus tellus ridiculus potenti aliquam sociis turpis. Nullam commodo eget laoreet risus cursus vel placerat, in dapibus sociis gravida faucibus sodales, fringilla potenti elit semper iaculis ullamcorper. Dignissim vulputate pretium montes pellentesque mollis, consectetur adipiscing curabitur semper sem rhoncus, litora viverra curae proin.',
|
||||
'title' => 'Terms of Service',
|
||||
'slug' => 'terms-of-service',
|
||||
'content' => 'Laoreet cum hendrerit iaculis arcu phasellus congue et elementum, pharetra risus imperdiet aptent posuere rutrum parturient blandit, dapibus tellus ridiculus potenti aliquam sociis turpis. Nullam commodo eget laoreet risus cursus vel placerat, in dapibus sociis gravida faucibus sodales, fringilla potenti elit semper iaculis ullamcorper. Dignissim vulputate pretium montes pellentesque mollis, consectetur adipiscing curabitur semper sem rhoncus, litora viverra curae proin.',
|
||||
],
|
||||
[
|
||||
'visibility' => 1,
|
||||
'title' => 'Privacy Policy',
|
||||
'slug' => 'privacy-policy',
|
||||
'content' => 'Sit orci justo augue maecenas laoreet consectetur natoque magnis in viverra sagittis, himenaeos urna facilisis mus proin primis diam accumsan tristique inceptos. Primis quisque posuere sit praesent lobortis feugiat semper convallis facilisis, vivamus gravida ligula nostra curae eu donec duis parturient senectus, arcu dolor viverra penatibus natoque cum nisi commodo. Litora sociis mauris justo nullam suspendisse mattis maecenas nascetur congue phasellus cras ultricies posuere donec, dapibus egestas diam lacus ornare montes senectus tincidunt eu taciti sed consequat.',
|
||||
'title' => 'Privacy Policy',
|
||||
'slug' => 'privacy-policy',
|
||||
'content' => 'Sit orci justo augue maecenas laoreet consectetur natoque magnis in viverra sagittis, himenaeos urna facilisis mus proin primis diam accumsan tristique inceptos. Primis quisque posuere sit praesent lobortis feugiat semper convallis facilisis, vivamus gravida ligula nostra curae eu donec duis parturient senectus, arcu dolor viverra penatibus natoque cum nisi commodo. Litora sociis mauris justo nullam suspendisse mattis maecenas nascetur congue phasellus cras ultricies posuere donec, dapibus egestas diam lacus ornare montes senectus tincidunt eu taciti sed consequat.',
|
||||
],
|
||||
[
|
||||
'visibility' => 1,
|
||||
'title' => 'Cookie Policy',
|
||||
'slug' => 'cookie-policy',
|
||||
'content' => 'Metus penatibus ligula dolor natoque non habitasse laoreet facilisis, libero vivamus eget semper vulputate interdum integer, phasellus lorem enim blandit consectetur nullam sollicitudin. Hendrerit interdum luctus ut in molestie himenaeos eros cum laoreet parturient est, eu lectus hac et netus viverra dictumst congue elit sem senectus litora, fames scelerisque adipiscing inceptos fringilla montes sociosqu suscipit auctor potenti. Elementum lacus vulputate viverra ac morbi ligula ipsum facilisi, sit eu imperdiet lacinia congue dis vitae.',
|
||||
'title' => 'Cookie Policy',
|
||||
'slug' => 'cookie-policy',
|
||||
'content' => 'Metus penatibus ligula dolor natoque non habitasse laoreet facilisis, libero vivamus eget semper vulputate interdum integer, phasellus lorem enim blandit consectetur nullam sollicitudin. Hendrerit interdum luctus ut in molestie himenaeos eros cum laoreet parturient est, eu lectus hac et netus viverra dictumst congue elit sem senectus litora, fames scelerisque adipiscing inceptos fringilla montes sociosqu suscipit auctor potenti. Elementum lacus vulputate viverra ac morbi ligula ipsum facilisi, sit eu imperdiet lacinia congue dis vitae.',
|
||||
],
|
||||
],
|
||||
'content' => [
|
||||
'regular' => [
|
||||
[
|
||||
'name' => 'section_features',
|
||||
'name' => 'section_features',
|
||||
'value' => 1,
|
||||
],
|
||||
[
|
||||
'name' => 'section_feature_boxes',
|
||||
'name' => 'section_feature_boxes',
|
||||
'value' => 1,
|
||||
],
|
||||
[
|
||||
'name' => 'section_get_started',
|
||||
'name' => 'section_get_started',
|
||||
'value' => 1,
|
||||
],
|
||||
[
|
||||
'name' => 'header_title',
|
||||
'name' => 'header_title',
|
||||
'value' => 'Simple <span class="text-theme">&</span> Powerful Personal Cloud Storage',
|
||||
],
|
||||
[
|
||||
'name' => 'header_description',
|
||||
'name' => 'header_description',
|
||||
'value' => 'Your private cloud storage software build on Laravel & Vue.js. No limits & no monthly fees. Truly freedom.',
|
||||
],
|
||||
[
|
||||
'name' => 'features_title',
|
||||
'name' => 'features_title',
|
||||
'value' => 'The Fastest Growing <span class="text-theme">File Manager</span> on the CodeCanyon Market',
|
||||
],
|
||||
[
|
||||
'name' => 'features_description',
|
||||
'name' => 'features_description',
|
||||
'value' => 'Your private cloud storage software build on Laravel & Vue.js. No limits & no monthly fees. Truly freedom.',
|
||||
],
|
||||
[
|
||||
'name' => 'feature_title_1',
|
||||
'name' => 'feature_title_1',
|
||||
'value' => 'Truly Freedom',
|
||||
],
|
||||
[
|
||||
'name' => 'feature_description_1',
|
||||
'name' => 'feature_description_1',
|
||||
'value' => 'You have full control over VueFileManager, no third authorities will control your service or usage, only you.',
|
||||
],
|
||||
[
|
||||
'name' => 'feature_title_2',
|
||||
'name' => 'feature_title_2',
|
||||
'value' => 'The Sky is the Limit',
|
||||
],
|
||||
[
|
||||
'name' => 'feature_description_2',
|
||||
'name' => 'feature_description_2',
|
||||
'value' => 'VueFileManager is cloud storage software. You have to install and running application on your own server hosting.',
|
||||
],
|
||||
[
|
||||
'name' => 'feature_title_3',
|
||||
'name' => 'feature_title_3',
|
||||
'value' => 'No Monthly Fees',
|
||||
],
|
||||
[
|
||||
'name' => 'feature_description_3',
|
||||
'name' => 'feature_description_3',
|
||||
'value' => 'When you running VueFileManager on your own server hosting, anybody can\'t control your content or resell your user data. Your data is safe.',
|
||||
],
|
||||
[
|
||||
'name' => 'get_started_title',
|
||||
'name' => 'get_started_title',
|
||||
'value' => 'Ready to Get <span class="text-theme">Started</span><br> With Us?',
|
||||
],
|
||||
[
|
||||
'name' => 'get_started_description',
|
||||
'name' => 'get_started_description',
|
||||
'value' => 'Your private cloud storage software build on Laravel & Vue.js. No limits & no monthly fees. Truly freedom.',
|
||||
],
|
||||
[
|
||||
'name' => 'footer_content',
|
||||
'name' => 'footer_content',
|
||||
'value' => '© 2021 Simple & Powerful Personal Cloud Storage. Developed by <a href="https://hi5ve.digital" target="_blank">Hi5Ve.Digital</a>',
|
||||
],
|
||||
[
|
||||
'name' => 'allow_homepage',
|
||||
'name' => 'allow_homepage',
|
||||
'value' => 1,
|
||||
],
|
||||
[
|
||||
'name' => 'app_color',
|
||||
'name' => 'app_color',
|
||||
'value' => '#00BC7E',
|
||||
],
|
||||
],
|
||||
'extended' => [
|
||||
[
|
||||
'name' => 'section_features',
|
||||
'name' => 'section_features',
|
||||
'value' => 1,
|
||||
],
|
||||
[
|
||||
'name' => 'section_feature_boxes',
|
||||
'name' => 'section_feature_boxes',
|
||||
'value' => 1,
|
||||
],
|
||||
[
|
||||
'name' => 'section_pricing_content',
|
||||
'name' => 'section_pricing_content',
|
||||
'value' => 1,
|
||||
],
|
||||
[
|
||||
'name' => 'section_get_started',
|
||||
'name' => 'section_get_started',
|
||||
'value' => 1,
|
||||
],
|
||||
[
|
||||
'name' => 'header_title',
|
||||
'name' => 'header_title',
|
||||
'value' => 'Simple <span class="text-theme">&</span> Powerful Personal Cloud Storage',
|
||||
],
|
||||
[
|
||||
'name' => 'header_description',
|
||||
'name' => 'header_description',
|
||||
'value' => 'Your private cloud storage software build on Laravel & Vue.js. No limits & no monthly fees. Truly freedom.',
|
||||
],
|
||||
[
|
||||
'name' => 'features_title',
|
||||
'name' => 'features_title',
|
||||
'value' => 'The Fastest Growing <span class="text-theme">File Manager</span> on the CodeCanyon Market',
|
||||
],
|
||||
[
|
||||
'name' => 'features_description',
|
||||
'name' => 'features_description',
|
||||
'value' => 'Your private cloud storage software build on Laravel & Vue.js. No limits & no monthly fees. Truly freedom.',
|
||||
],
|
||||
[
|
||||
'name' => 'feature_title_1',
|
||||
'name' => 'feature_title_1',
|
||||
'value' => 'Truly Freedom',
|
||||
],
|
||||
[
|
||||
'name' => 'feature_description_1',
|
||||
'name' => 'feature_description_1',
|
||||
'value' => 'You have full control over VueFileManager, no third authorities will control your service or usage, only you.',
|
||||
],
|
||||
[
|
||||
'name' => 'feature_title_2',
|
||||
'name' => 'feature_title_2',
|
||||
'value' => 'The Sky is the Limit',
|
||||
],
|
||||
[
|
||||
'name' => 'feature_description_2',
|
||||
'name' => 'feature_description_2',
|
||||
'value' => 'VueFileManager is cloud storage software. You have to install and running application on your own server hosting.',
|
||||
],
|
||||
[
|
||||
'name' => 'feature_title_3',
|
||||
'name' => 'feature_title_3',
|
||||
'value' => 'No Monthly Fees',
|
||||
],
|
||||
[
|
||||
'name' => 'feature_description_3',
|
||||
'name' => 'feature_description_3',
|
||||
'value' => 'When you running VueFileManager on your own server hosting, anybody can\'t control your content or resell your user data. Your data is safe.',
|
||||
],
|
||||
[
|
||||
'name' => 'pricing_title',
|
||||
'name' => 'pricing_title',
|
||||
'value' => 'Pick the <span class="text-theme">Best Plan</span> For Your Needs',
|
||||
],
|
||||
[
|
||||
'name' => 'pricing_description',
|
||||
'name' => 'pricing_description',
|
||||
'value' => 'Your private cloud storage software build on Laravel & Vue.js. No limits & no monthly fees. Truly freedom.',
|
||||
],
|
||||
[
|
||||
'name' => 'get_started_title',
|
||||
'name' => 'get_started_title',
|
||||
'value' => 'Ready to Get <span class="text-theme">Started</span><br> With Us?',
|
||||
],
|
||||
[
|
||||
'name' => 'get_started_description',
|
||||
'name' => 'get_started_description',
|
||||
'value' => 'Your private cloud storage software build on Laravel & Vue.js. No limits & no monthly fees. Truly freedom.',
|
||||
],
|
||||
[
|
||||
'name' => 'footer_content',
|
||||
'name' => 'footer_content',
|
||||
'value' => '© 2021 Simple & Powerful Personal Cloud Storage. Developed by <a href="https://hi5ve.digital" target="_blank" class="text-theme">Hi5Ve.Digital</a>',
|
||||
],
|
||||
[
|
||||
'name' => 'app_color',
|
||||
'name' => 'app_color',
|
||||
'value' => '#00BC7E',
|
||||
],
|
||||
],
|
||||
|
||||
@@ -11,23 +11,23 @@ return [
|
||||
|
||||
// On boarding
|
||||
'successful_payment_with_password_creation' => 'Dakujeme, platba bola uspesne zaznamenana. V poslednom kroku si prosim vytvorte heslo pre Vas ucet.',
|
||||
'pay_order_description' => 'Zaplacenim objednavky se Vas ucet automaticky zaktivuje a vytvori se Vam digitalni prostor pro Vase dulezite dokumenty.',
|
||||
'pay_order_description' => 'Zaplacenim objednavky se Vas ucet automaticky zaktivuje a vytvori se Vam digitalni prostor pro Vase dulezite dokumenty.',
|
||||
|
||||
'payment_page.payment_gateway' => 'Platebni karta',
|
||||
'payment_page.company' => 'Spolecnost',
|
||||
'payment_page.ico' => 'ICO',
|
||||
'payment_page.address' => 'Adresa',
|
||||
'payment_page.company' => 'Spolecnost',
|
||||
'payment_page.ico' => 'ICO',
|
||||
'payment_page.address' => 'Adresa',
|
||||
|
||||
// Mail notifications for ordering
|
||||
'mail_greeting' => 'Vážený zákazníku,',
|
||||
'mail_salutation' => 'S pozdravem a přáním hezkého dne, Tým Oasis Drive',
|
||||
'mail_tariff' => 'Vámi vybraný tarif: :name - :storage za :price',
|
||||
'mail_greeting' => 'Vážený zákazníku,',
|
||||
'mail_salutation' => 'S pozdravem a přáním hezkého dne, Tým Oasis Drive',
|
||||
'mail_tariff' => 'Vámi vybraný tarif: :name - :storage za :price',
|
||||
'mail_activation_action' => 'Pro aktivaci klikněte zde',
|
||||
|
||||
'mail_order_subject' => '🏝 Potvrzeni Objednavky - OasisDrive',
|
||||
'mail_order_line_1' => 'Právě jste si úspěšně vytvořil registraci bezpečnostní datové služby OasisDrive.',
|
||||
'mail_order_line_2' => 'Odkaz je platný 24 hodin.',
|
||||
'mail_order_line_3' => 'Po dokončení registrace v odkazu Vám bude služba automaticky aktivována a lze ji ihned využívat.',
|
||||
'mail_order_line_1' => 'Právě jste si úspěšně vytvořil registraci bezpečnostní datové služby OasisDrive.',
|
||||
'mail_order_line_2' => 'Odkaz je platný 24 hodin.',
|
||||
'mail_order_line_3' => 'Po dokončení registrace v odkazu Vám bude služba automaticky aktivována a lze ji ihned využívat.',
|
||||
|
||||
'mail_reminder_line_1' => 'Děkujeme za Vaši objednávku služby Oasis Drive pro bezpečné uložení Vašich firemních dokumentů.',
|
||||
'mail_reminder_line_2' => 'Připomínáme dokončení aktivace služby a blížící se konec platnosti registračního odkazu:',
|
||||
@@ -35,38 +35,38 @@ return [
|
||||
|
||||
// Admin
|
||||
'oasis.create_order' => 'Vytvorit objednavku',
|
||||
'oasis.create_user' => 'Vytvorit Uzivatela',
|
||||
'oasis.create_user' => 'Vytvorit Uzivatela',
|
||||
|
||||
// Homepage
|
||||
'navigation.price' => 'Ceník',
|
||||
'navigation.about-us' => 'O Nás',
|
||||
'navigation.price' => 'Ceník',
|
||||
'navigation.about-us' => 'O Nás',
|
||||
'navigation.contact-and-support' => 'Kontakt a Podpora',
|
||||
|
||||
'try_drive' => 'Vyzkouset OasisDrive',
|
||||
'more_info' => 'Více Informací',
|
||||
|
||||
'contact.ico' => 'ICO',
|
||||
'contact.hq' => 'Sídlo',
|
||||
'contact.hq' => 'Sídlo',
|
||||
|
||||
'homepage_header_title' => 'Jednoduchý a Bezpečný Cloud vo Vrecku',
|
||||
'homepage_header_title' => 'Jednoduchý a Bezpečný Cloud vo Vrecku',
|
||||
'homepage_header_description' => 'Virtuální šanon, vždy s tebou.',
|
||||
|
||||
'homepage_feature_title' => 'Proč je OasisDrive Výnimočný?',
|
||||
'homepage_feature_title' => 'Proč je OasisDrive Výnimočný?',
|
||||
'homepage_feature_description' => 'Cloudové uložiště je v podstatě virtuální šanon, kam uživatelé ukládají svá data, ke kterým se mohou přihlásit odkudkoli v nezávislosti na zařízení. OasisDrive umožňuje bezpečně chránit Vaše firemní data.',
|
||||
|
||||
'feature_1_title' => 'Bezpecnost na prvnim miste',
|
||||
'feature_1_title' => 'Bezpecnost na prvnim miste',
|
||||
'feature_1_description' => 'Naše cloudové uložiště umožňuje bezpečně chránit Vaše firemní data. kdy využíváme několik vysoce zabezpečených serverů po Evropské unii a vícenásobným šifrováním souborů (tzv. kryptováním).',
|
||||
|
||||
'feature_2_title' => 'Bezpečnost v rámci GDPR',
|
||||
'feature_2_title' => 'Bezpečnost v rámci GDPR',
|
||||
'feature_2_description' => 'bezpečnost uložení dat v rámci evropské směrnice o GDPR a přidružených zákonů o zpracování a ochraně citlivých údajů. Naši klienti jsou tedy chráněni před zneužitím dat a tím pádem i před pokutami vyplývajícími z legislativy, které být astronomické.',
|
||||
|
||||
'feature_3_title' => 'Jednoduchost pouzivani',
|
||||
'feature_3_title' => 'Jednoduchost pouzivani',
|
||||
'feature_3_description' => 'Naše cloudové uložiště umožňuje bezpečně chránit Vaše firemní data. kdy využíváme několik vysoce zabezpečených serverů po Evropské unii a vícenásobným šifrováním souborů (tzv. kryptováním).',
|
||||
|
||||
'homepage_pricing_title' => 'Kolik stoji OasisDrive?',
|
||||
'homepage_pricing_title' => 'Kolik stoji OasisDrive?',
|
||||
'homepage_pricing_description' => 'OasisDrive je dostupny v troch variantach. Ak presiahnete limit svojho balicka, mozete si navysit balik dat jednoduchym upgradom uctu.',
|
||||
|
||||
'homepage_about_us_title' => 'Kto Jsme?',
|
||||
'homepage_about_us_title' => 'Kto Jsme?',
|
||||
'homepage_about_us_description' => 'Jsme česká společnost, která pro fyzické a právnické osoby (živnostníky a firmy) poskytuje cloudové uložiště dle evropské směrnice (GDPR) a následného zákona o zpracování osobních údajů (zákon 110/2019 sb.).',
|
||||
|
||||
'homepage_about_us_line_1' => 'Zakládáme si na kvalitě a nejlepší možné bezpečnosti pro uchovávání a zpracování dat a dokumentů.',
|
||||
@@ -74,20 +74,20 @@ return [
|
||||
'homepage_about_us_line_3' => 'Důležitá je pro nás uživatelská jednoduchost, stoprocentní funkčnost a přehlednost.',
|
||||
'homepage_about_us_line_4' => 'Bezpečnost uložení dat tak, jak nařizuje směrnice EU (GDPR) a zákon o zpracování osobních údajů.',
|
||||
|
||||
'homepage_contact_title' => 'Kontakt a Podpora',
|
||||
'homepage_contact_title' => 'Kontakt a Podpora',
|
||||
'homepage_contact_description' => 'V pripade akychkolvek otazok nas nevahajte kontaktovat emailom, alebo na ktoromkolvek telefonnom cisle.',
|
||||
|
||||
'contact_company_title' => 'Společnost',
|
||||
'contact_support_title' => 'Podpora',
|
||||
'contact_sales_title' => 'Prodej',
|
||||
'contact_documents_title' => 'Dokumenty',
|
||||
'contact_company_title' => 'Společnost',
|
||||
'contact_support_title' => 'Podpora',
|
||||
'contact_sales_title' => 'Prodej',
|
||||
'contact_documents_title' => 'Dokumenty',
|
||||
'contact_leave_message_title' => 'Zanechte nám vzkaz',
|
||||
|
||||
'document_gdpr_policy' => 'Směrnice EU (GDPR)',
|
||||
|
||||
// Invoice module
|
||||
'in.invoice' => 'Invoice',
|
||||
'in_toaster.success_creation' => 'Invoice was created successfully',
|
||||
'in.invoice' => 'Invoice',
|
||||
'in_toaster.success_creation' => 'Invoice was created successfully',
|
||||
'in_toaster.success_invoice_edition' => 'The invoice was successfully edited.',
|
||||
'in_toaster.success_client_creation' => 'Client was created successfully',
|
||||
|
||||
@@ -97,92 +97,92 @@ return [
|
||||
'in_editor.page.edit_regular_invoice' => 'Edit Regular Invoice',
|
||||
'in_editor.page.edit_advance_invoice' => 'Edit Advance Invoice',
|
||||
|
||||
'in_number' => 'Invoice Number',
|
||||
'in_variable' => 'Variable Number',
|
||||
'in_number' => 'Invoice Number',
|
||||
'in_variable' => 'Variable Number',
|
||||
'in_delivery_at' => 'Delivery At',
|
||||
|
||||
'in_number_desc' => 'Recommendation based on your latest invoice number {number}',
|
||||
'in_number_desc' => 'Recommendation based on your latest invoice number {number}',
|
||||
'in_variable_desc' => 'Recommendation based on your invoice number',
|
||||
|
||||
'in_editor.properties' => 'Invoice Properties',
|
||||
'in_editor.client' => 'Client',
|
||||
'in_editor.items' => 'Items',
|
||||
'in_editor.discount' => 'Discount',
|
||||
'in_editor.others' => 'Others',
|
||||
'in_editor.summary' => 'Invoice Summary',
|
||||
'in_editor.client' => 'Client',
|
||||
'in_editor.items' => 'Items',
|
||||
'in_editor.discount' => 'Discount',
|
||||
'in_editor.others' => 'Others',
|
||||
'in_editor.summary' => 'Invoice Summary',
|
||||
|
||||
'in_editor.ico' => 'ICO',
|
||||
'in_editor.dic' => 'DIC',
|
||||
'in_editor.ic_dph' => 'IC DPH',
|
||||
'in_editor.company_name' => 'Company name',
|
||||
'in_editor.new_client' => 'Register new client...',
|
||||
'in_editor.client_address' => 'Address',
|
||||
'in_editor.client_city' => 'City',
|
||||
'in_editor.client_postal_code' => 'Postal Code',
|
||||
'in_editor.client_country' => 'Country',
|
||||
'in_editor.client_phone' => 'Phone',
|
||||
'in_editor.client_email' => 'Email',
|
||||
'in_editor.client_logo' => 'Logo',
|
||||
'in_editor.description' => 'Description',
|
||||
'in_editor.amount' => 'Amount',
|
||||
'in_editor.unit' => 'Unit',
|
||||
'in_editor.tax_rate' => 'Tax Rate',
|
||||
'in_editor.price' => 'Price',
|
||||
'in_editor.add_item' => 'Add New Item',
|
||||
'in_editor.apply_discount' => 'Apply discount',
|
||||
'in_editor.discount_help' => 'You can apply percentage or value discount on your invoice.',
|
||||
'in_editor.ico' => 'ICO',
|
||||
'in_editor.dic' => 'DIC',
|
||||
'in_editor.ic_dph' => 'IC DPH',
|
||||
'in_editor.company_name' => 'Company name',
|
||||
'in_editor.new_client' => 'Register new client...',
|
||||
'in_editor.client_address' => 'Address',
|
||||
'in_editor.client_city' => 'City',
|
||||
'in_editor.client_postal_code' => 'Postal Code',
|
||||
'in_editor.client_country' => 'Country',
|
||||
'in_editor.client_phone' => 'Phone',
|
||||
'in_editor.client_email' => 'Email',
|
||||
'in_editor.client_logo' => 'Logo',
|
||||
'in_editor.description' => 'Description',
|
||||
'in_editor.amount' => 'Amount',
|
||||
'in_editor.unit' => 'Unit',
|
||||
'in_editor.tax_rate' => 'Tax Rate',
|
||||
'in_editor.price' => 'Price',
|
||||
'in_editor.add_item' => 'Add New Item',
|
||||
'in_editor.apply_discount' => 'Apply discount',
|
||||
'in_editor.discount_help' => 'You can apply percentage or value discount on your invoice.',
|
||||
'in_editor.discount_type_percent' => 'Percentage',
|
||||
'in_editor.discount_type_amount' => 'Amount',
|
||||
'in_editor.discount_type' => 'Discount Type',
|
||||
'in_editor.discount_rate' => 'Discount Rate',
|
||||
'in_editor.store_client' => 'Store client for future use',
|
||||
'in_editor.store_client_notes' => 'Client will be stored to your list and will be ready to reuse again when you create new invoice.',
|
||||
'in_editor.send' => "Send invoice on client's email",
|
||||
'in_editor.send_notes' => 'Invoice will be sent to client immediately after invoice generate.',
|
||||
'in_editor.default_unit' => 'Pcs.',
|
||||
'in_editor.discount_type_amount' => 'Amount',
|
||||
'in_editor.discount_type' => 'Discount Type',
|
||||
'in_editor.discount_rate' => 'Discount Rate',
|
||||
'in_editor.store_client' => 'Store client for future use',
|
||||
'in_editor.store_client_notes' => 'Client will be stored to your list and will be ready to reuse again when you create new invoice.',
|
||||
'in_editor.send' => "Send invoice on client's email",
|
||||
'in_editor.send_notes' => 'Invoice will be sent to client immediately after invoice generate.',
|
||||
'in_editor.default_unit' => 'Pcs.',
|
||||
|
||||
'in_editor.plac.invoice_number' => 'Type invoice number...',
|
||||
'in_editor.plac.variable_number' => 'Type variable number...',
|
||||
'in_editor.plac.select_client' => 'Create new or select existing client...',
|
||||
'in_editor.plac.client_ico' => 'Type client ICO...',
|
||||
'in_editor.plac.client_dic' => 'Type client DIC...',
|
||||
'in_editor.plac.client_ic_dph' => 'Type client IC DHP...',
|
||||
'in_editor.plac.client_company' => 'Type client company name...',
|
||||
'in_editor.plac.client_address' => 'Type client address...',
|
||||
'in_editor.plac.client_city' => 'Type client city...',
|
||||
'in_editor.plac.invoice_number' => 'Type invoice number...',
|
||||
'in_editor.plac.variable_number' => 'Type variable number...',
|
||||
'in_editor.plac.select_client' => 'Create new or select existing client...',
|
||||
'in_editor.plac.client_ico' => 'Type client ICO...',
|
||||
'in_editor.plac.client_dic' => 'Type client DIC...',
|
||||
'in_editor.plac.client_ic_dph' => 'Type client IC DHP...',
|
||||
'in_editor.plac.client_company' => 'Type client company name...',
|
||||
'in_editor.plac.client_address' => 'Type client address...',
|
||||
'in_editor.plac.client_city' => 'Type client city...',
|
||||
'in_editor.plac.client_postal_code' => 'Type client postal code...',
|
||||
'in_editor.plac.client_country' => 'Select client country',
|
||||
'in_editor.plac.client_phone' => "Type client's phone number...",
|
||||
'in_editor.plac.client_email' => "Type client's email address...",
|
||||
'in_editor.plac.item_desc' => 'Type item description...',
|
||||
'in_editor.plac.item_amount' => 'The amount in Pcs.',
|
||||
'in_editor.plac.item_unit' => 'The unit',
|
||||
'in_editor.plac.item_tax_rate' => 'Type item tax rate in %...',
|
||||
'in_editor.plac.item_price' => 'Type the item price...',
|
||||
'in_editor.plac.discount_type' => 'Select discount type',
|
||||
'in_editor.plac.discount_rate' => 'Type discount rate...',
|
||||
'in_editor.plac.client_country' => 'Select client country',
|
||||
'in_editor.plac.client_phone' => "Type client's phone number...",
|
||||
'in_editor.plac.client_email' => "Type client's email address...",
|
||||
'in_editor.plac.item_desc' => 'Type item description...',
|
||||
'in_editor.plac.item_amount' => 'The amount in Pcs.',
|
||||
'in_editor.plac.item_unit' => 'The unit',
|
||||
'in_editor.plac.item_tax_rate' => 'Type item tax rate in %...',
|
||||
'in_editor.plac.item_price' => 'Type the item price...',
|
||||
'in_editor.plac.discount_type' => 'Select discount type',
|
||||
'in_editor.plac.discount_rate' => 'Type discount rate...',
|
||||
|
||||
'in_editor.summary.vat_base' => 'VAT Base',
|
||||
'in_editor.summary.vat' => 'VAT',
|
||||
'in_editor.summary.total' => 'Total',
|
||||
'in_editor.summary.vat' => 'VAT',
|
||||
'in_editor.summary.total' => 'Total',
|
||||
|
||||
'in_editor.submit' => 'Store & Generate Invoice',
|
||||
'in_editor.error' => 'There is probably an error, please check it and fix it.',
|
||||
'in_editor.error' => 'There is probably an error, please check it and fix it.',
|
||||
|
||||
'inputs.placeholder_search_invoices' => 'Search in invoices...',
|
||||
'inputs.placeholder_search_clients' => 'Search in clients...',
|
||||
'inputs.placeholder_search_clients' => 'Search in clients...',
|
||||
|
||||
'in.nav.group.invoicing' => 'Invoicing',
|
||||
'in.nav.group.settings' => 'Settings',
|
||||
'in.nav.group.settings' => 'Settings',
|
||||
|
||||
'in.nav.invoices' => 'Invoices',
|
||||
'in.nav.invoices' => 'Invoices',
|
||||
'in.nav.advance_invoices' => 'Advance Invoices',
|
||||
'in.nav.clients' => 'Clients',
|
||||
'in.nav.my_bill_profile' => 'My Billing Profile',
|
||||
'in.nav.clients' => 'Clients',
|
||||
'in.nav.my_bill_profile' => 'My Billing Profile',
|
||||
|
||||
'in.create.regular_invoice' => 'Create Invoice',
|
||||
'in.create.advance_invoice' => 'Create Advance Invoice',
|
||||
'in.create.client' => 'Create Client',
|
||||
'in.create.client' => 'Create Client',
|
||||
|
||||
'in.button.setup_bill_profile' => 'Set up Billing Profile',
|
||||
'in.button.store_bill_profile' => 'Store My Billing Profile',
|
||||
@@ -191,82 +191,82 @@ return [
|
||||
|
||||
'in.bill_profile_note' => 'Here you can set your <b class="text-theme">billing profile</b> which will be paste to your every newly generated invoice.',
|
||||
|
||||
'in.empty.bill_profile_title' => "You don't have billing profile",
|
||||
'in.empty.bill_profile_title' => "You don't have billing profile",
|
||||
'in.empty.bill_profile_description' => 'Before your first invoice, please set up your billing profile.',
|
||||
'in.empty.clients_invoices' => "Client doesn't have any invoices yet.",
|
||||
'in.empty.clients_invoices' => "Client doesn't have any invoices yet.",
|
||||
|
||||
'in.empty.invoice_page_title' => 'Create Your First Invoice',
|
||||
'in.empty.invoice_page_title' => 'Create Your First Invoice',
|
||||
'in.empty.invoice_page_description' => "It's very easy, just click on the button below.",
|
||||
|
||||
'in.empty.client_page_title' => 'Create Your First Client',
|
||||
|
||||
'in.form.some_issues' => 'We found some issues in your form. Please check it out and submit again',
|
||||
'in.form.create_client' => 'Create Client',
|
||||
'in.form.some_issues' => 'We found some issues in your form. Please check it out and submit again',
|
||||
'in.form.create_client' => 'Create Client',
|
||||
'in.form.delete_invoice' => 'Delete Invoice',
|
||||
|
||||
'in.form.stamp' => 'Stamp',
|
||||
'in.form.author_name' => 'Author Name',
|
||||
'in.form.swift_code' => 'BIC code/SWIFT',
|
||||
'in.form.iban' => 'IBAN',
|
||||
'in.form.bank_name' => 'Bank Name',
|
||||
'in.form.reg_notes' => 'Registration Notes',
|
||||
'in.form.company_name' => 'Company name',
|
||||
'in.form.stamp' => 'Stamp',
|
||||
'in.form.author_name' => 'Author Name',
|
||||
'in.form.swift_code' => 'BIC code/SWIFT',
|
||||
'in.form.iban' => 'IBAN',
|
||||
'in.form.bank_name' => 'Bank Name',
|
||||
'in.form.reg_notes' => 'Registration Notes',
|
||||
'in.form.company_name' => 'Company name',
|
||||
'in.form.company_and_logo' => 'Company & Logo',
|
||||
'in.form.company_details' => 'Company Details',
|
||||
'in.form.company_address' => 'Company Address',
|
||||
'in.form.contact_info' => 'Contact Information',
|
||||
'in.form.bank_info' => 'Bank Info',
|
||||
'in.form.author' => 'Author',
|
||||
'in.form.company_details' => 'Company Details',
|
||||
'in.form.company_address' => 'Company Address',
|
||||
'in.form.contact_info' => 'Contact Information',
|
||||
'in.form.bank_info' => 'Bank Info',
|
||||
'in.form.author' => 'Author',
|
||||
|
||||
'in.menu.edit_invoice' => 'Edit Invoice',
|
||||
'in.menu.send_invoice' => 'Send Invoice',
|
||||
'in.menu.show_company' => 'Show Company',
|
||||
'in.menu.edit' => 'Edit',
|
||||
'in.menu.delete' => 'Delete',
|
||||
'in.menu.edit' => 'Edit',
|
||||
'in.menu.delete' => 'Delete',
|
||||
|
||||
'in.popup.delete_single_invoice.title' => 'Are you sure you want to delete this invoice?',
|
||||
'in.popup.delete_single_invoice.title' => 'Are you sure you want to delete this invoice?',
|
||||
'in.popup.delete_single_invoice.message' => 'Your invoice will be permanently deleted.',
|
||||
|
||||
'in.popup.delete_invoice.title' => 'Are you sure you want to delete invoice number {number}?',
|
||||
'in.popup.delete_invoice.title' => 'Are you sure you want to delete invoice number {number}?',
|
||||
'in.popup.delete_invoice.message' => 'Your invoice will be permanently deleted.',
|
||||
|
||||
'in.popup.delete_client.title' => 'Are you sure you want to delete client {name}?',
|
||||
'in.popup.delete_client.title' => 'Are you sure you want to delete client {name}?',
|
||||
'in.popup.delete_client.message' => 'Your client will be permanently deleted.',
|
||||
|
||||
'in.total_net' => 'Total Net',
|
||||
'in.total_net' => 'Total Net',
|
||||
'in.total_invoices' => 'Total Invoices',
|
||||
'in.n-abbreviation' => 'n.',
|
||||
|
||||
'in.doc.taxable_doc' => 'Taxable Document',
|
||||
'in.doc.advance_doc' => 'Advance Document',
|
||||
|
||||
'in.doc.number' => 'Number',
|
||||
'in.doc.number' => 'Number',
|
||||
'in.doc.variable_symbol' => 'Variable symbol',
|
||||
|
||||
'in.doc.customer' => 'Customer',
|
||||
'in.doc.supplier' => 'Supplier',
|
||||
|
||||
'in.doc.date_of_issue' => 'Date of issue',
|
||||
'in.doc.date_of_issue' => 'Date of issue',
|
||||
'in.doc.date_of_delivery' => 'Date of delivery',
|
||||
'in.doc.due_date' => 'Due date',
|
||||
'in.doc.due_date' => 'Due date',
|
||||
|
||||
'in.doc.headquarters' => 'Headquarters',
|
||||
|
||||
'in.doc.sum_to_pay' => 'Total to pay',
|
||||
'in.doc.sum_to_pay' => 'Total to pay',
|
||||
'in.doc.bank_account_number' => 'Bank Number',
|
||||
|
||||
'in.doc.item.name' => 'Item',
|
||||
'in.doc.item.amount' => 'Amount',
|
||||
'in.doc.item.name' => 'Item',
|
||||
'in.doc.item.amount' => 'Amount',
|
||||
'in.doc.item.price_per_unit' => 'Unit Price',
|
||||
'in.doc.item.total' => 'Total',
|
||||
'in.doc.item.vat_rate' => 'Vat Rate',
|
||||
'in.doc.item.vat' => 'Vat',
|
||||
'in.doc.item.total' => 'Total',
|
||||
'in.doc.item.vat_rate' => 'Vat Rate',
|
||||
'in.doc.item.vat' => 'Vat',
|
||||
'in.doc.item.total_with_vat' => 'Total with Vat',
|
||||
|
||||
'in.doc.discount' => 'Discount',
|
||||
'in.doc.vat_base' => 'VAT Base',
|
||||
|
||||
'in.doc.thanks' => 'Thank you for choosing our services.',
|
||||
'in.doc.thanks' => 'Thank you for choosing our services.',
|
||||
'in.doc.not_vat_payer' => "We aren't VAT payers.",
|
||||
|
||||
'in.doc.creator' => 'Issuer',
|
||||
@@ -276,22 +276,22 @@ return [
|
||||
'in.notify.subject' => 'You have new invoice from company :company',
|
||||
'in.notify.message' => ':company send you invoice. You can find it in attachment of this email.',
|
||||
|
||||
'in.route_title.invoices' => 'Invoices',
|
||||
'in.route_title.client' => 'Client',
|
||||
'in.route_title.client_detail' => 'Client',
|
||||
'in.route_title.invoices' => 'Invoices',
|
||||
'in.route_title.client' => 'Client',
|
||||
'in.route_title.client_detail' => 'Client',
|
||||
'in.route_title.client_invoices' => 'Client Invoices',
|
||||
|
||||
'in.share.share_invoice' => 'Share Your Invoice',
|
||||
'in.share.type_email' => 'Type email address...',
|
||||
'in.share.submit_share' => 'Send Invoice',
|
||||
'in.share.invoice_sended' => 'Your invoice has been sent successfully',
|
||||
'in.sort_by_net' => 'Sort By Total Net',
|
||||
'in.share.share_invoice' => 'Share Your Invoice',
|
||||
'in.share.type_email' => 'Type email address...',
|
||||
'in.share.submit_share' => 'Send Invoice',
|
||||
'in.share.invoice_sended' => 'Your invoice has been sent successfully',
|
||||
'in.sort_by_net' => 'Sort By Total Net',
|
||||
'in.sort_by_invoice_number' => 'Sort By Invoice Number',
|
||||
|
||||
'in.button_sorting' => 'Sorting',
|
||||
|
||||
'in.billing_info' => 'Billing Information',
|
||||
|
||||
'in.doc.revers_charge' => 'Revers Charge',
|
||||
'in.doc.revers_charge' => 'Revers Charge',
|
||||
'in.doc.tax_transfer_liability' => 'Transfer of tax liability',
|
||||
];
|
||||
|
||||
@@ -34,29 +34,29 @@ return [
|
||||
|
||||
'connections' => [
|
||||
'sqlite' => [
|
||||
'driver' => 'sqlite',
|
||||
'url' => env('DATABASE_URL'),
|
||||
'database' => env('DB_DATABASE', database_path('database.sqlite')),
|
||||
'prefix' => '',
|
||||
'driver' => 'sqlite',
|
||||
'url' => env('DATABASE_URL'),
|
||||
'database' => env('DB_DATABASE', database_path('database.sqlite')),
|
||||
'prefix' => '',
|
||||
'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),
|
||||
],
|
||||
|
||||
'mysql' => [
|
||||
'driver' => 'mysql',
|
||||
'url' => env('DATABASE_URL'),
|
||||
'host' => env('DB_HOST', '127.0.0.1'),
|
||||
'port' => env('DB_PORT', '3306'),
|
||||
'database' => env('DB_DATABASE', 'forge'),
|
||||
'username' => env('DB_USERNAME', 'forge'),
|
||||
'password' => env('DB_PASSWORD', ''),
|
||||
'unix_socket' => env('DB_SOCKET', ''),
|
||||
'charset' => 'utf8mb4',
|
||||
'collation' => 'utf8mb4_unicode_ci',
|
||||
'prefix' => '',
|
||||
'driver' => 'mysql',
|
||||
'url' => env('DATABASE_URL'),
|
||||
'host' => env('DB_HOST', '127.0.0.1'),
|
||||
'port' => env('DB_PORT', '3306'),
|
||||
'database' => env('DB_DATABASE', 'forge'),
|
||||
'username' => env('DB_USERNAME', 'forge'),
|
||||
'password' => env('DB_PASSWORD', ''),
|
||||
'unix_socket' => env('DB_SOCKET', ''),
|
||||
'charset' => 'utf8mb4',
|
||||
'collation' => 'utf8mb4_unicode_ci',
|
||||
'prefix' => '',
|
||||
'prefix_indexes' => true,
|
||||
'strict' => true,
|
||||
'engine' => null,
|
||||
'options' => extension_loaded('pdo_mysql') ? array_filter([
|
||||
'strict' => true,
|
||||
'engine' => null,
|
||||
'options' => extension_loaded('pdo_mysql') ? array_filter([
|
||||
PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
|
||||
]) : [],
|
||||
'dump' => [
|
||||
@@ -67,30 +67,30 @@ return [
|
||||
],
|
||||
|
||||
'pgsql' => [
|
||||
'driver' => 'pgsql',
|
||||
'url' => env('DATABASE_URL'),
|
||||
'host' => env('DB_HOST', '127.0.0.1'),
|
||||
'port' => env('DB_PORT', '5432'),
|
||||
'database' => env('DB_DATABASE', 'forge'),
|
||||
'username' => env('DB_USERNAME', 'forge'),
|
||||
'password' => env('DB_PASSWORD', ''),
|
||||
'charset' => 'utf8',
|
||||
'prefix' => '',
|
||||
'driver' => 'pgsql',
|
||||
'url' => env('DATABASE_URL'),
|
||||
'host' => env('DB_HOST', '127.0.0.1'),
|
||||
'port' => env('DB_PORT', '5432'),
|
||||
'database' => env('DB_DATABASE', 'forge'),
|
||||
'username' => env('DB_USERNAME', 'forge'),
|
||||
'password' => env('DB_PASSWORD', ''),
|
||||
'charset' => 'utf8',
|
||||
'prefix' => '',
|
||||
'prefix_indexes' => true,
|
||||
'schema' => 'public',
|
||||
'sslmode' => 'prefer',
|
||||
'schema' => 'public',
|
||||
'sslmode' => 'prefer',
|
||||
],
|
||||
|
||||
'sqlsrv' => [
|
||||
'driver' => 'sqlsrv',
|
||||
'url' => env('DATABASE_URL'),
|
||||
'host' => env('DB_HOST', 'localhost'),
|
||||
'port' => env('DB_PORT', '1433'),
|
||||
'database' => env('DB_DATABASE', 'forge'),
|
||||
'username' => env('DB_USERNAME', 'forge'),
|
||||
'password' => env('DB_PASSWORD', ''),
|
||||
'charset' => 'utf8',
|
||||
'prefix' => '',
|
||||
'driver' => 'sqlsrv',
|
||||
'url' => env('DATABASE_URL'),
|
||||
'host' => env('DB_HOST', 'localhost'),
|
||||
'port' => env('DB_PORT', '1433'),
|
||||
'database' => env('DB_DATABASE', 'forge'),
|
||||
'username' => env('DB_USERNAME', 'forge'),
|
||||
'password' => env('DB_PASSWORD', ''),
|
||||
'charset' => 'utf8',
|
||||
'prefix' => '',
|
||||
'prefix_indexes' => true,
|
||||
],
|
||||
],
|
||||
@@ -124,22 +124,22 @@ return [
|
||||
|
||||
'options' => [
|
||||
'cluster' => env('REDIS_CLUSTER', 'redis'),
|
||||
'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'),
|
||||
'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'),
|
||||
],
|
||||
|
||||
'default' => [
|
||||
'url' => env('REDIS_URL'),
|
||||
'host' => env('REDIS_HOST', '127.0.0.1'),
|
||||
'url' => env('REDIS_URL'),
|
||||
'host' => env('REDIS_HOST', '127.0.0.1'),
|
||||
'password' => env('REDIS_PASSWORD', null),
|
||||
'port' => env('REDIS_PORT', '6379'),
|
||||
'port' => env('REDIS_PORT', '6379'),
|
||||
'database' => env('REDIS_DB', '0'),
|
||||
],
|
||||
|
||||
'cache' => [
|
||||
'url' => env('REDIS_URL'),
|
||||
'host' => env('REDIS_HOST', '127.0.0.1'),
|
||||
'url' => env('REDIS_URL'),
|
||||
'host' => env('REDIS_HOST', '127.0.0.1'),
|
||||
'password' => env('REDIS_PASSWORD', null),
|
||||
'port' => env('REDIS_PORT', '6379'),
|
||||
'port' => env('REDIS_PORT', '6379'),
|
||||
'database' => env('REDIS_CACHE_DB', '1'),
|
||||
],
|
||||
],
|
||||
|
||||
@@ -43,50 +43,50 @@ return [
|
||||
'disks' => [
|
||||
'local' => [
|
||||
'driver' => 'local',
|
||||
'root' => storage_path('app'),
|
||||
'root' => storage_path('app'),
|
||||
],
|
||||
|
||||
'public' => [
|
||||
'driver' => 'local',
|
||||
'root' => storage_path('app/public'),
|
||||
'url' => env('APP_URL').'/storage',
|
||||
'driver' => 'local',
|
||||
'root' => storage_path('app/public'),
|
||||
'url' => env('APP_URL').'/storage',
|
||||
'visibility' => 'public',
|
||||
],
|
||||
|
||||
's3' => [
|
||||
'driver' => 's3',
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||
'region' => env('AWS_DEFAULT_REGION'),
|
||||
'bucket' => env('AWS_BUCKET'),
|
||||
'driver' => 's3',
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||
'region' => env('AWS_DEFAULT_REGION'),
|
||||
'bucket' => env('AWS_BUCKET'),
|
||||
'endpoint' => env('AWS_URL'),
|
||||
],
|
||||
|
||||
'spaces' => [
|
||||
'driver' => 's3',
|
||||
'key' => env('DO_SPACES_KEY'),
|
||||
'secret' => env('DO_SPACES_SECRET'),
|
||||
'driver' => 's3',
|
||||
'key' => env('DO_SPACES_KEY'),
|
||||
'secret' => env('DO_SPACES_SECRET'),
|
||||
'endpoint' => env('DO_SPACES_ENDPOINT'),
|
||||
'region' => env('DO_SPACES_REGION'),
|
||||
'bucket' => env('DO_SPACES_BUCKET'),
|
||||
'region' => env('DO_SPACES_REGION'),
|
||||
'bucket' => env('DO_SPACES_BUCKET'),
|
||||
],
|
||||
|
||||
'wasabi' => [
|
||||
'driver' => 's3',
|
||||
'key' => env('WASABI_KEY'),
|
||||
'secret' => env('WASABI_SECRET'),
|
||||
'driver' => 's3',
|
||||
'key' => env('WASABI_KEY'),
|
||||
'secret' => env('WASABI_SECRET'),
|
||||
'endpoint' => env('WASABI_ENDPOINT'),
|
||||
'region' => env('WASABI_REGION'),
|
||||
'bucket' => env('WASABI_BUCKET'),
|
||||
'region' => env('WASABI_REGION'),
|
||||
'bucket' => env('WASABI_BUCKET'),
|
||||
],
|
||||
|
||||
'backblaze' => [
|
||||
'driver' => 's3',
|
||||
'key' => env('BACKBLAZE_KEY'),
|
||||
'secret' => env('BACKBLAZE_SECRET'),
|
||||
'driver' => 's3',
|
||||
'key' => env('BACKBLAZE_KEY'),
|
||||
'secret' => env('BACKBLAZE_SECRET'),
|
||||
'endpoint' => env('BACKBLAZE_ENDPOINT'),
|
||||
'region' => env('BACKBLAZE_REGION'),
|
||||
'bucket' => env('BACKBLAZE_BUCKET'),
|
||||
'region' => env('BACKBLAZE_REGION'),
|
||||
'bucket' => env('BACKBLAZE_BUCKET'),
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
@@ -102,7 +102,7 @@ return [
|
||||
*/
|
||||
|
||||
'limiters' => [
|
||||
'login' => 'login',
|
||||
'login' => 'login',
|
||||
'two-factor' => 'two-factor',
|
||||
],
|
||||
|
||||
|
||||
@@ -43,8 +43,8 @@ return [
|
||||
*/
|
||||
|
||||
'argon' => [
|
||||
'memory' => 1024,
|
||||
'memory' => 1024,
|
||||
'threads' => 2,
|
||||
'time' => 2,
|
||||
'time' => 2,
|
||||
],
|
||||
];
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -2,6 +2,6 @@
|
||||
|
||||
return [
|
||||
'enable' => env('LARAVEL_QUERY_MONITOR', true),
|
||||
'host' => env('LARAVEL_QUERY_MONITOR_HOST', '0.0.0.0'),
|
||||
'port' => env('LARAVEL_QUERY_MONITOR_PORT', 8081),
|
||||
'host' => env('LARAVEL_QUERY_MONITOR_HOST', '0.0.0.0'),
|
||||
'port' => env('LARAVEL_QUERY_MONITOR_PORT', 8081),
|
||||
];
|
||||
|
||||
@@ -35,36 +35,36 @@ return [
|
||||
|
||||
'channels' => [
|
||||
'stack' => [
|
||||
'driver' => 'stack',
|
||||
'channels' => ['single'],
|
||||
'driver' => 'stack',
|
||||
'channels' => ['single'],
|
||||
'ignore_exceptions' => false,
|
||||
],
|
||||
|
||||
'single' => [
|
||||
'driver' => 'single',
|
||||
'path' => storage_path('logs/laravel.log'),
|
||||
'level' => 'debug',
|
||||
'path' => storage_path('logs/laravel.log'),
|
||||
'level' => 'debug',
|
||||
],
|
||||
|
||||
'daily' => [
|
||||
'driver' => 'daily',
|
||||
'path' => storage_path('logs/laravel.log'),
|
||||
'level' => 'debug',
|
||||
'days' => 14,
|
||||
'path' => storage_path('logs/laravel.log'),
|
||||
'level' => 'debug',
|
||||
'days' => 14,
|
||||
],
|
||||
|
||||
'slack' => [
|
||||
'driver' => 'slack',
|
||||
'url' => env('LOG_SLACK_WEBHOOK_URL'),
|
||||
'driver' => 'slack',
|
||||
'url' => env('LOG_SLACK_WEBHOOK_URL'),
|
||||
'username' => 'Laravel Log',
|
||||
'emoji' => ':boom:',
|
||||
'level' => 'critical',
|
||||
'emoji' => ':boom:',
|
||||
'level' => 'critical',
|
||||
],
|
||||
|
||||
'papertrail' => [
|
||||
'driver' => 'monolog',
|
||||
'level' => 'debug',
|
||||
'handler' => SyslogUdpHandler::class,
|
||||
'driver' => 'monolog',
|
||||
'level' => 'debug',
|
||||
'handler' => SyslogUdpHandler::class,
|
||||
'handler_with' => [
|
||||
'host' => env('PAPERTRAIL_URL'),
|
||||
'port' => env('PAPERTRAIL_PORT'),
|
||||
@@ -72,26 +72,26 @@ return [
|
||||
],
|
||||
|
||||
'stderr' => [
|
||||
'driver' => 'monolog',
|
||||
'handler' => StreamHandler::class,
|
||||
'driver' => 'monolog',
|
||||
'handler' => StreamHandler::class,
|
||||
'formatter' => env('LOG_STDERR_FORMATTER'),
|
||||
'with' => [
|
||||
'with' => [
|
||||
'stream' => 'php://stderr',
|
||||
],
|
||||
],
|
||||
|
||||
'syslog' => [
|
||||
'driver' => 'syslog',
|
||||
'level' => 'debug',
|
||||
'level' => 'debug',
|
||||
],
|
||||
|
||||
'errorlog' => [
|
||||
'driver' => 'errorlog',
|
||||
'level' => 'debug',
|
||||
'level' => 'debug',
|
||||
],
|
||||
|
||||
'null' => [
|
||||
'driver' => 'monolog',
|
||||
'driver' => 'monolog',
|
||||
'handler' => NullHandler::class,
|
||||
],
|
||||
|
||||
|
||||
@@ -56,7 +56,7 @@ return [
|
||||
|
||||
'from' => [
|
||||
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
|
||||
'name' => env('MAIL_FROM_NAME', 'Example'),
|
||||
'name' => env('MAIL_FROM_NAME', 'Example'),
|
||||
],
|
||||
|
||||
/*
|
||||
|
||||
@@ -33,35 +33,35 @@ return [
|
||||
],
|
||||
|
||||
'database' => [
|
||||
'driver' => 'database',
|
||||
'table' => 'jobs',
|
||||
'queue' => 'default',
|
||||
'driver' => 'database',
|
||||
'table' => 'jobs',
|
||||
'queue' => 'default',
|
||||
'retry_after' => 90,
|
||||
],
|
||||
|
||||
'beanstalkd' => [
|
||||
'driver' => 'beanstalkd',
|
||||
'host' => 'localhost',
|
||||
'queue' => 'default',
|
||||
'driver' => 'beanstalkd',
|
||||
'host' => 'localhost',
|
||||
'queue' => 'default',
|
||||
'retry_after' => 90,
|
||||
'block_for' => 0,
|
||||
'block_for' => 0,
|
||||
],
|
||||
|
||||
'sqs' => [
|
||||
'driver' => 'sqs',
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||
'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'),
|
||||
'queue' => env('SQS_QUEUE', 'your-queue-name'),
|
||||
'queue' => env('SQS_QUEUE', 'your-queue-name'),
|
||||
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
||||
],
|
||||
|
||||
'redis' => [
|
||||
'driver' => 'redis',
|
||||
'connection' => 'default',
|
||||
'queue' => env('REDIS_QUEUE', 'default'),
|
||||
'driver' => 'redis',
|
||||
'connection' => 'default',
|
||||
'queue' => env('REDIS_QUEUE', 'default'),
|
||||
'retry_after' => 90,
|
||||
'block_for' => null,
|
||||
'block_for' => null,
|
||||
],
|
||||
],
|
||||
|
||||
@@ -77,8 +77,8 @@ return [
|
||||
*/
|
||||
|
||||
'failed' => [
|
||||
'driver' => env('QUEUE_FAILED_DRIVER', 'database'),
|
||||
'driver' => env('QUEUE_FAILED_DRIVER', 'database'),
|
||||
'database' => env('DB_CONNECTION', 'mysql'),
|
||||
'table' => 'failed_jobs',
|
||||
'table' => 'failed_jobs',
|
||||
],
|
||||
];
|
||||
|
||||
@@ -54,7 +54,7 @@ return [
|
||||
*/
|
||||
|
||||
'chunk' => [
|
||||
'searchable' => 500,
|
||||
'searchable' => 500,
|
||||
'unsearchable' => 500,
|
||||
],
|
||||
|
||||
@@ -83,19 +83,19 @@ return [
|
||||
*/
|
||||
|
||||
'algolia' => [
|
||||
'id' => env('ALGOLIA_APP_ID', ''),
|
||||
'id' => env('ALGOLIA_APP_ID', ''),
|
||||
'secret' => env('ALGOLIA_SECRET', ''),
|
||||
],
|
||||
|
||||
'tntsearch' => [
|
||||
'storage' => storage_path(), //place where the index files will be stored
|
||||
'storage' => storage_path(), //place where the index files will be stored
|
||||
'fuzziness' => env('TNTSEARCH_FUZZINESS', true),
|
||||
'fuzzy' => [
|
||||
'prefix_length' => 2,
|
||||
'fuzzy' => [
|
||||
'prefix_length' => 2,
|
||||
'max_expansions' => 500,
|
||||
'distance' => 3,
|
||||
'distance' => 3,
|
||||
],
|
||||
'asYouType' => true,
|
||||
'asYouType' => true,
|
||||
'searchBoolean' => env('TNTSEARCH_BOOLEAN', true),
|
||||
],
|
||||
];
|
||||
|
||||
@@ -14,8 +14,8 @@ return [
|
||||
*/
|
||||
|
||||
'mailgun' => [
|
||||
'domain' => env('MAILGUN_DOMAIN'),
|
||||
'secret' => env('MAILGUN_SECRET'),
|
||||
'domain' => env('MAILGUN_DOMAIN'),
|
||||
'secret' => env('MAILGUN_SECRET'),
|
||||
'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
|
||||
],
|
||||
|
||||
@@ -24,13 +24,13 @@ return [
|
||||
],
|
||||
|
||||
'ses' => [
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'key' => env('AWS_ACCESS_KEY_ID'),
|
||||
'secret' => env('AWS_SECRET_ACCESS_KEY'),
|
||||
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
|
||||
],
|
||||
|
||||
'passport' => [
|
||||
'client_id' => env('PASSPORT_CLIENT_ID'),
|
||||
'client_id' => env('PASSPORT_CLIENT_ID'),
|
||||
'client_secret' => env('PASSPORT_CLIENT_SECRET'),
|
||||
],
|
||||
];
|
||||
|
||||
@@ -34,20 +34,20 @@ return [
|
||||
|
||||
'pdf' => [
|
||||
'enabled' => true,
|
||||
'binary' => env('WKHTML_PDF_BINARY', '/usr/local/bin/wkhtmltopdf'),
|
||||
'binary' => env('WKHTML_PDF_BINARY', '/usr/local/bin/wkhtmltopdf'),
|
||||
'timeout' => false,
|
||||
'options' => [
|
||||
'enable-local-file-access' => true,
|
||||
'encoding' => 'UTF-8',
|
||||
'encoding' => 'UTF-8',
|
||||
],
|
||||
'env' => [],
|
||||
],
|
||||
|
||||
'image' => [
|
||||
'enabled' => true,
|
||||
'binary' => env('WKHTML_IMG_BINARY', '/usr/local/bin/wkhtmltoimage'),
|
||||
'binary' => env('WKHTML_IMG_BINARY', '/usr/local/bin/wkhtmltoimage'),
|
||||
'timeout' => false,
|
||||
'options' => [],
|
||||
'env' => [],
|
||||
'env' => [],
|
||||
],
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user