����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.142.187.179 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/gle.gltechlimited.com/app/ |
Upload File : |
<?php namespace App; use Illuminate\Database\Eloquent\Model; use Spatie\Translatable\HasTranslations; class Config extends Model { use HasTranslations; public $translatable = ['title', 'invoice_add', 'terms_condition', 'privacy_pol', 'refund_pol', 'copyright']; /** * Convert the model instance to an array. * * @return array */ public function toArray() { $attributes = parent::toArray(); foreach ($this->getTranslatableAttributes() as $name) { $attributes[$name] = $this->getTranslation($name, app()->getLocale()); } return $attributes; } protected $fillable = [ 'logo', 'w_name', 'wel_eml', 'title', 'favicon', 'livetvicon', 'w_email', 'verify_email', 'stripe_pub_key', 'stripe_secret_key', 'paypal_mar_email', 'currency_code', 'currency_symbol', 'invoice_add', 'terms_condition', 'privacy_pol', 'refund_pol', 'prime_main_slider', 'prime_genre_slider', 'donation', 'donation_link', 'prime_footer', 'prime_movie_single', 'copyright', 'blog', 'stripe_payment', 'paypal_payment', 'payu_payment', 'paytm_payment', 'paytm_test', 'bankdetails', 'download', 'free_sub', 'free_days', 'account_no', 'branch', 'account_name', 'ifsc_code', 'bank_name', 'preloader', 'catlog', 'withlogin', 'inspect', 'rightclick', 'goto', 'inspect', 'color', 'age_restriction', 'is_playstore', 'is_appstore', 'playstore', 'appstore', 'color', 'color_dark', 'user_rating', 'comments', 'braintree', 'paystack', 'remove_landing_page', 'coinpay', 'razorpay_payment', 'captcha', 'instamojo_payment', 'mollie_payment', 'cashfree_payment', 'aws', 'omise_payment', 'flutterrave_payment', 'comments_approval', 'payhere_payment', 'preloader_img', 'worldpay_payment', 'squarepay_payment', 'api_key', 'api_enable', 'bunny', 'wasabi', 'twilio_enable', ]; }