34 lines
803 B
PHP
34 lines
803 B
PHP
<?php
|
|
/*
|
|
* created by : Chandan Yadav
|
|
* Created On : 03-November-2023
|
|
* Uses : To display message on admin panel
|
|
*/
|
|
return [
|
|
'UTF8_ENABLED' => TRUE,
|
|
'DIMENTIONS' => [
|
|
"THUMBNAIL" => "300*160 pixels (3:2), Max Size 2MB and .jpg format image",
|
|
],
|
|
'SIZE' => [
|
|
"THUMBNAIL" => "7168"
|
|
],
|
|
'PLATFORM' => ['ios', 'android', 'web'],
|
|
|
|
|
|
|
|
'subscription' => [
|
|
'stripe_private_key' => env('STRIPE_KEY'),
|
|
'stripe_secret_key' => env('STRIPE_SECRET'),
|
|
'webhook_secret' => env('STRIPE_WEBHOOK_SECRET'),
|
|
],
|
|
|
|
'googlePlaces'=>[
|
|
'api_key'=>env('GOOGLE_PLACE_API_KEY')
|
|
],
|
|
|
|
// 'ADMIN_EMAIL' => env('ADMIN_EMAIL', 'sayliraut@yopmail.com'),
|
|
'ADMIN_EMAIL' => env('ADMIN_EMAIL', 'contact@cheerstotheseason.com'),
|
|
|
|
|
|
];
|