users = $users; } public function collection() { return $this->users; } public function headings(): array { return [ 'Mã', 'Tên', 'Email', 'Số điện thoại', 'Ngày sinh', 'Chức danh', 'Phòng ban', 'Kích hoạt', ]; } 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 'Danh sách người dùng'; } public function startCell(): string { return 'A1'; } }