Files
cheerstothe_season_2.0/config/constants.php

34 lines
803 B
PHP
Raw Permalink Normal View History

2024-07-02 19:20:18 +05:30
<?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'],
2024-08-06 11:14:38 +05:30
2024-07-02 19:20:18 +05:30
'subscription' => [
'stripe_private_key' => env('STRIPE_KEY'),
'stripe_secret_key' => env('STRIPE_SECRET'),
'webhook_secret' => env('STRIPE_WEBHOOK_SECRET'),
],
2024-07-12 19:17:19 +05:30
'googlePlaces'=>[
'api_key'=>env('GOOGLE_PLACE_API_KEY')
2024-08-06 11:14:38 +05:30
],
2024-08-07 17:38:23 +05:30
// 'ADMIN_EMAIL' => env('ADMIN_EMAIL', 'sayliraut@yopmail.com'),
'ADMIN_EMAIL' => env('ADMIN_EMAIL', 'contact@cheerstotheseason.com'),
2024-08-06 11:14:38 +05:30
2024-07-02 19:20:18 +05:30
];