{{-- resources/views/pages/team/index.blade.php --}} @extends('layouts.app') @section('title', 'Meet the Team — KiruDev Technologies') @section('content') The People Meet the Team A multidisciplinary team united by the mission to engineer exceptional digital products from Nigeria for the world. @php $deptLabels = ['executive'=>'Executive Management','technical'=>'Technical & Security','marketing'=>'Marketing & Growth','support'=>'Customer Care & Support']; $deptColors = ['executive'=>'indigo','technical'=>'blue','marketing'=>'emerald','support'=>'amber']; @endphp @foreach($team as $dept => $members) {{ $deptLabels[$dept] ?? ucfirst($dept) }} · {{ $members->count() }} {{ $members->count()===1?'member':'members' }} @foreach($members as $m) @if($m->photo) @else {{ strtoupper(substr($m->name,0,1)) }}{{ strtoupper(substr(explode(' ',$m->name)[1]??'',0,1)) }} @endif {{ $m->name }} {{ $m->role }} @if($m->skills && count($m->skills)) @foreach(array_slice($m->skills,0,3) as $skill) {{ $skill }} @endforeach @endif @endforeach @endforeach @endsection
The People
A multidisciplinary team united by the mission to engineer exceptional digital products from Nigeria for the world.
{{ $m->role }}