@php
$careers = App\Models\Career::all();
$careers_local = App\Models\Career::where('type', 'local')->get();
$careers_international = App\Models\Career::where('type', 'international')->get();
@endphp
Join us and be part of our awesome TEAM!
Interested candidates may send their resumes / curriculum vitae to the following:
Human Resource
inquire@quantaservices.com
Direct Line
(+632) 8635 6692 Loc. 104
Careers Local
Title |
Department |
Location |
Actions |
@if (count($careers_local) == 0)
No available careers for local |
@endif
@foreach ($careers_local as $career)
{{$career->title}}
|
{{$career->department}} |
{{$career->location}} |
|
@endforeach
@if(session('success'))
@endif