File: /mnt/data/ghayatcom/ghayatcom-api/app/AdminSettings.php
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
/**
* @property mixed $ondemand_time_limit
*/
class AdminSettings extends Model
{
use SoftDeletes;
protected $fillable = ['user_id', 'ondemand', 'home_visit', 'schedule_appointment', 'ondemand_time_limit', 'dependant_limit', 'appointment_reminder', 'tax', 'lab_tax', 'platform_fee', 'transaction_fee', 'tokbox_api_key', 'tokbox_secret', 'stripe_public_key', 'stripe_secret', 'twilio_status', 'twilio_sid', 'twilio_auth_token', 'twilio_verify_sid', 'twilio_number', 'email_host', 'email_port', 'email_username', 'email_password', 'google_api_key', 'pusher_app_id', 'pusher_app_key', 'pusher_app_secret', 'pusher_app_cluster', 'google_analytics_tracking_id', 'created_by','google_analytics_tracking_id'];
}