26 lines
627 B
PHP
26 lines
627 B
PHP
<?php
|
|
|
|
namespace App\Models\Order\Card\CardBalance;
|
|
|
|
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 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 CardBalance extends Model
|
|
{
|
|
use Actionable;
|
|
use HasFactory;
|
|
use SoftDeletes;
|
|
}
|