wip
This commit is contained in:
25
app/Models/Order/Card/CardBalance/CardBalance.php
Normal file
25
app/Models/Order/Card/CardBalance/CardBalance.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?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;
|
||||
}
|
||||
@@ -36,7 +36,7 @@ use Illuminate\Database\Eloquent\SoftDeletes;
|
||||
* @property string $ready_files
|
||||
* @property \Illuminate\Support\Carbon $created_at
|
||||
* @property \Illuminate\Support\Carbon $updated_at
|
||||
*/
|
||||
*/
|
||||
class CardRequisite extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
Reference in New Issue
Block a user