lk-students/app/Services/TestConnect.php

27 lines
883 B
PHP
Raw Normal View History

2024-07-12 12:47:16 +03:00
<?php
namespace App\Services;
class TestConnect
{
public function getInfo($user): array
{
return [
'guid' => '3897263a-208f-11ee-93a9-f8cc6e370457',
'guid_faculty' => '4cbc06bd-5f3d-11ec-80b4-a0369f032517',
'guid_group' => '662e64d7-b4ad-11ec-937c-f8cc6e370458',
'name' => 'Абдулазиева Мадина Ибрагимовна',
'first_name' => 'Мадина1',
'last_name' => 'Абдулазиева',
'middle_name' => 'Ибрагимовна',
'number_record_book' => '23009202',
'email' => 'test@example.com',
'faculty' => 'Лечебный факультет',
'course' => 'Первый',
'group' => 'ЛД-103',
'code' => '31.05.01',
'form_education' => 'Очная',
];
}
}