/home/mip/www/img/credit/datatables/config.tar
hashids.php 0000644 00000002404 15123256744 0006711 0 ustar 00 <?php
return [
/*
|--------------------------------------------------------------------------
| Default Connection Name
|--------------------------------------------------------------------------
|
| Here you may specify which of the connections below you wish to use as
| your default connection for all work. Of course, you may use many
| connections at once using the manager class.
|
*/
'default' => 'main',
/*
|--------------------------------------------------------------------------
| Hashids Connections
|--------------------------------------------------------------------------
|
| Here are each of the connections setup for your application. Example
| configuration has been included, but you may add as many connections as
| you would like.
|
*/
'connections' => [
'main' => [
'salt' => '',
'length' => 0,
// 'alphabet' => 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890'
],
'alternative' => [
'salt' => 'your-salt-string',
'length' => 'your-length-integer',
// 'alphabet' => 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890'
],
],
];
view.php 0000664 00000001774 15123256744 0006253 0 ustar 00 <?php
return [
/*
|--------------------------------------------------------------------------
| View Storage Paths
|--------------------------------------------------------------------------
|
| Most templating systems load templates from disk. Here you may specify
| an array of paths that should be checked for your views. Of course
| the usual Laravel view path has already been registered for you.
|
*/
'paths' => [
realpath(base_path('resources/views')),
],
/*
|--------------------------------------------------------------------------
| Compiled View Path
|--------------------------------------------------------------------------
|
| This option determines where all the compiled Blade templates will be
| stored for your application. Typically, this is within the storage
| directory. However, as usual, you are free to change this value.
|
*/
'compiled' => realpath(storage_path('framework/views')),
];
services.php 0000664 00000001726 15123256744 0007121 0 ustar 00 <?php
return [
/*
|--------------------------------------------------------------------------
| Third Party Services
|--------------------------------------------------------------------------
|
| This file is for storing the credentials for third party services such
| as Stripe, Mailgun, SparkPost and others. This file provides a sane
| default location for this type of information, allowing packages
| to have a conventional place to find your various credentials.
|
*/
'mailgun' => [
'domain' => env('MAILGUN_DOMAIN'),
'secret' => env('MAILGUN_SECRET'),
],
'ses' => [
'key' => env('SES_KEY'),
'secret' => env('SES_SECRET'),
'region' => 'us-east-1',
],
'sparkpost' => [
'secret' => env('SPARKPOST_SECRET'),
],
'stripe' => [
'model' => QxCMS\User::class,
'key' => env('STRIPE_KEY'),
'secret' => env('STRIPE_SECRET'),
],
];
account.php 0000664 00000004247 15123256744 0006733 0 ustar 00 <?php
return [
'dateformat' =>
[
'default' => 1,
'lists' => [
1 => 'mm/dd/yyy ('.date('m/d/Y').')',
2 => 'yyyy/mm/dd ('.date('Y/m/d').')',
3 => 'dd/mm/yyyy ('.date('d/m/Y').')'
], 1 => [
'mask' => 'mm/dd/yyyy', 'date_picker' => 'mm/dd/yy', 'php' => 'm/d/Y'
], 2 => [
'mask' => 'yyyy/mm/dd', 'date_picker' => 'yy/mm/dd', 'php' => 'Y/m/d'
], 3 => [
'mask' => 'dd/mm/yyyy', 'date_picker' => 'dd/mm/yy', 'php' => 'd/m/Y'
],
],
'displaydateformat' =>
[
'default' => 2,
'lists' => [
1 => strtoupper(date('n/j/Y')),
2 => strtoupper(date('m/d/Y')),
3 => strtoupper(date('n/j')),
4 => strtoupper(date('n/j/y')),
5 => strtoupper(date('m/d/y')),
6 => strtoupper(date('d-M')),
7 => strtoupper(date('d-M-y')),
8 => strtoupper(date('d-M-Y')),
9 => strtoupper(date('M-y')),
10 => strtoupper(date('F-y')),
11 => strtoupper(date('F d, Y'))
], 1 => [
'php' => 'n/j/Y',
], 2 => [
'php' => 'm/d/Y',
], 3 => [
'php' => 'n/j',
], 4 => [
'php' => 'n/j/y',
], 5 => [
'php' => 'm/d/y',
], 6 => [
'php' => 'd-M',
], 7 => [
'php' => 'd-M-y',
], 8 => [
'php' => 'd-M-Y',
], 9 => [
'php' => 'M-y',
], 10 => [
'php' => 'F-y',
], 11 => [
'php' => 'F d, Y',
],
],
'nameformat' => [
1 => '(Last name), (First name) (Suffix) (Middle name)',
2 => '(Last name), (First name) (Suffix) (Middle Initial.)',
3 => '(First name) (Middle name) (Last name) (Suffix)',
4 => '(First name) (Middle Initial.) (Last name) (Suffix)'
],
'mail' => [
'driver' => [
'smtp' => 'SMTP',
'mail' => 'MAIL'
]
],
'storage' => [
'types' => [
'public' => 'Local Storage',
's3' => 'Amazon S3'
]
]
]; modules.php 0000664 00000000400 15123256744 0006732 0 ustar 00 <?php
return [
'modules' => [
'Likod',
'Client',
'Employer',
'Kiosk',
'Api'
],
'api' => 'api',
'likod' => 'likod',
'client' => 'client',
'employer' => 'employer',
'kiosk' => 'kiosk'
]; datatables.php 0000644 00000007662 15123256744 0007405 0 ustar 00 <?php
return [
/*
* DataTables search options.
*/
'search' => [
/*
* Smart search will enclose search keyword with wildcard string "%keyword%".
* SQL: column LIKE "%keyword%"
*/
'smart' => true,
/*
* Multi-term search will explode search keyword using spaces resulting into multiple term search.
*/
'multi_term' => true,
/*
* Case insensitive will search the keyword in lower case format.
* SQL: LOWER(column) LIKE LOWER(keyword)
*/
'case_insensitive' => true,
/*
* Wild card will add "%" in between every characters of the keyword.
* SQL: column LIKE "%k%e%y%w%o%r%d%"
*/
'use_wildcards' => false,
/*
* Perform a search which starts with the given keyword.
* SQL: column LIKE "keyword%"
*/
'starts_with' => false,
],
/*
* DataTables internal index id response column name.
*/
'index_column' => 'DT_RowIndex',
/*
* List of available builders for DataTables.
* This is where you can register your custom dataTables builder.
*/
'engines' => [
'eloquent' => Yajra\DataTables\EloquentDataTable::class,
'query' => Yajra\DataTables\QueryDataTable::class,
'collection' => Yajra\DataTables\CollectionDataTable::class,
'resource' => Yajra\DataTables\ApiResourceDataTable::class,
],
/*
* DataTables accepted builder to engine mapping.
* This is where you can override which engine a builder should use
* Note, only change this if you know what you are doing!
*/
'builders' => [
//Illuminate\Database\Eloquent\Relations\Relation::class => 'eloquent',
//Illuminate\Database\Eloquent\Builder::class => 'eloquent',
//Illuminate\Database\Query\Builder::class => 'query',
//Illuminate\Support\Collection::class => 'collection',
],
/*
* Nulls last sql pattern for PostgreSQL & Oracle.
* For MySQL, use 'CASE WHEN :column IS NULL THEN 1 ELSE 0 END, :column :direction'
*/
'nulls_last_sql' => ':column :direction NULLS LAST',
/*
* User friendly message to be displayed on user if error occurs.
* Possible values:
* null - The exception message will be used on error response.
* 'throw' - Throws a \Yajra\DataTables\Exceptions\Exception. Use your custom error handler if needed.
* 'cus