This commit is contained in:
2025-05-29 15:39:57 +05:00
parent 1b96fb1a99
commit 505f6bb37b
9 changed files with 374 additions and 23 deletions

View File

@@ -10,6 +10,33 @@ use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\SoftDeletes;
/**
* @property int $int
* @property string $unique_id
* @property string $card_type_id
* @property string $card_number
* @property string $card_year
* @property string $card_month
* @property string $region
* @property string $branch_id
* @property string $customer_name
* @property string $customer_surname
* @property string $customer_patronic_name
* @property string $born_at
* @property string $phone
* @property string $passport_serie
* @property string $passport_id
* @property string $status
* @property string $passport_one
* @property string $passport_two
* @property string $passport_three
* @property string $passport_four
* @property string $notes
* @property string $user_id
* @property string $ready_files
* @property \Illuminate\Support\Carbon $created_at
* @property \Illuminate\Support\Carbon $updated_at
*/
class CardRequisite extends Model
{
use HasFactory;