This commit is contained in:
2025-11-03 13:57:50 +05:00
parent 09c0bec901
commit 5f2760713f
9 changed files with 49 additions and 45 deletions

View File

@@ -10,8 +10,7 @@ use Illuminate\Database\Eloquent\Relations\BelongsTo;
/**
* @param int $id
*
* @property string unique_id
* @property string $unique_id
* @property int $user_id
* @property int $card_type_id
* @property string $card_number
@@ -20,18 +19,18 @@ use Illuminate\Database\Eloquent\Relations\BelongsTo;
* @property string $customer_name
* @property string $customer_surname
* @property string $customer_patronic_name
* @property date $born_at
* @property \Illuminate\Support\Carbon $born_at
* @property string $phone
* @property string $passport_serie
* @property string $passport_id
* @property text $passport_one
* @property text $passport_two
* @property text $passport_three
* @property text $passport_four
* @property string $passport_one
* @property string $passport_two
* @property string $passport_three
* @property string $passport_four
* @property string $status
* @property null|string $notes
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
*/
class CardPinOrder extends Model
{