45 lines
1.1 KiB
PHP
45 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Models\Payment;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/**
|
|
* @property int $id
|
|
* @property string $refunded_amount
|
|
* @property string $booking_number
|
|
* @property string $amount
|
|
* @property string $depositedAmount
|
|
* @property string $orderNumber
|
|
* @property string $description
|
|
* @property string $orderId
|
|
* @property string $cardholderName
|
|
* @property string $pan
|
|
* @property string $approvalCode
|
|
* @property string $expiration
|
|
* @property string $formUrl
|
|
* @property string $successUrl
|
|
* @property string $errorUrl
|
|
* @property string $api_client
|
|
* @property string $paymentStatus
|
|
* @property string $callbackStatus
|
|
* @property string $username
|
|
* @property int $online_paymantable_id
|
|
* @property string $online_paymantable_type
|
|
* @property $api_response
|
|
* @property \Illuminate\Support\Carbon $created_at
|
|
* @property \Illuminate\Support\Carbon $updated_at
|
|
*/
|
|
class OnlinePaymentHistory extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
/**
|
|
* Table name
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'online_payment_histories';
|
|
}
|