Fewo Mails / Booking Country Services
This commit is contained in:
parent
b9c26d06d0
commit
48a6eb2282
154 changed files with 7761 additions and 1643 deletions
|
|
@ -172,6 +172,7 @@ return [
|
|||
App\Providers\RouteServiceProvider::class,
|
||||
|
||||
Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class,
|
||||
Barryvdh\DomPDF\ServiceProvider::class,
|
||||
Jenssegers\Date\DateServiceProvider::class,
|
||||
Collective\Html\HtmlServiceProvider::class,
|
||||
Intervention\Image\ImageServiceProvider::class,
|
||||
|
|
@ -239,6 +240,7 @@ return [
|
|||
'Util' => App\Services\Util::class,
|
||||
'Excel' => Maatwebsite\Excel\Facades\Excel::class,
|
||||
'DataTables' => Yajra\DataTables\Facades\DataTables::class,
|
||||
'PDF' => Barryvdh\DomPDF\Facade::class,
|
||||
|
||||
],
|
||||
|
||||
|
|
|
|||
5
config/booking.php
Executable file
5
config/booking.php
Executable file
|
|
@ -0,0 +1,5 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
|
||||
];
|
||||
|
|
@ -60,12 +60,30 @@ return [
|
|||
'url' => env('APP_URL').'/storage/customer',
|
||||
'visibility' => 'public',
|
||||
],
|
||||
'travel_user' => [
|
||||
'driver' => 'local',
|
||||
'root' => storage_path('app/travel_user'),
|
||||
'url' => env('APP_URL').'/storage/travel_user',
|
||||
'visibility' => 'public',
|
||||
],
|
||||
'booking' => [
|
||||
'driver' => 'local',
|
||||
'root' => storage_path('app/booking'),
|
||||
'url' => env('APP_URL').'/storage/booking',
|
||||
'visibility' => 'public',
|
||||
],
|
||||
'general' => [
|
||||
'driver' => 'local',
|
||||
'root' => storage_path('app/general'),
|
||||
'url' => env('APP_URL').'/storage/general',
|
||||
'visibility' => 'public',
|
||||
],
|
||||
'booking_fewo' => [
|
||||
'driver' => 'local',
|
||||
'root' => storage_path('app/booking_fewo'),
|
||||
'url' => env('APP_URL').'/storage/booking_fewo',
|
||||
'visibility' => 'public',
|
||||
],
|
||||
'fewo_invoices' => [
|
||||
'driver' => 'local',
|
||||
'root' => storage_path('app/fewo/invoices'),
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ return [
|
|||
2 => [
|
||||
'sua-st' => ['name' => 'SUPERADMIN > Einstellungen' , 'color' => 'superadmin'],
|
||||
'sua-st-al' => ['name' => 'SUPERADMIN > Einstellungen > Airline' , 'color' => 'superadmin'],
|
||||
'sua-st-et' => ['name' => 'SUPERADMIN > Einstellungen > E-Mail Vorlagen' , 'color' => 'superadmin'],
|
||||
'sua-st-em' => ['name' => 'SUPERADMIN > Einstellungen > E-Mails' , 'color' => 'superadmin'],
|
||||
'sua-st-ke' => ['name' => 'SUPERADMIN > Einstellungen > Keywords' , 'color' => 'superadmin'],
|
||||
'sua-st-sp' => ['name' => 'SUPERADMIN > Einstellungen > Leistungsträger' , 'color' => 'superadmin'],
|
||||
'sua-st-tn' => ['name' => 'SUPERADMIN > Einstellungen > Nationalitäten' , 'color' => 'superadmin'],
|
||||
|
|
@ -46,7 +46,6 @@ return [
|
|||
'sua-re-bo' => ['name' => 'SUPERADMIN > Export > Buchungen' , 'color' => 'superadmin'],
|
||||
'sua-re-pp' => ['name' => 'SUPERADMIN > Export > Leistungsträger' , 'color' => 'superadmin'],
|
||||
'sua-ur-rt' => ['name' => 'SUPERADMIN > User Rechte' , 'color' => 'danger'],
|
||||
|
||||
'cms-cn-co' => ['name' => 'ADMIN CMS > Inhalte > Länder' , 'color' => 'secondary'],
|
||||
|
||||
],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue