users = $users; } public function collection() { return $this->users; } public function headings(): array { return [ 'Код', 'Имя', 'Электронный адрес', 'Номер телефон', 'Дата рождения', 'Должность', 'Подразделение', 'Активирован', ]; } public function map($user): array { return [ $user->id, $user->name, $user->email, $user->tel, explode(' ', $user->birthday)[0], $user->title_id, $user->department_id, $user->active, ]; } public function title(): string { return 'Список пользавателя'; } public function startCell(): string { return 'A1'; } }