27 lines
661 B
PHP
27 lines
661 B
PHP
<?php
|
|
|
|
namespace App\Models\Order\Card\CardTransaction;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
use Laravel\Nova\Actions\Actionable;
|
|
|
|
/**
|
|
* @property int $id
|
|
* @property int $user_id
|
|
* @property string $passport_serie
|
|
* @property string $passport_id
|
|
* @property string $card_number
|
|
* @property string $card_month
|
|
* @property string $card_year
|
|
* @property \Illuminate\Support\Carbon $created_at
|
|
* @property \Illuminate\Support\Carbon $updated_at
|
|
*/
|
|
class CardTransaction extends Model
|
|
{
|
|
use Actionable;
|
|
use HasFactory;
|
|
use SoftDeletes;
|
|
}
|