wip
This commit is contained in:
@@ -4,16 +4,22 @@ 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 string $passport_serie
|
||||
* @property string $passport_number
|
||||
* @property string $card_number_masked
|
||||
* @property string $card_expire_date
|
||||
* @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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user