Files
citrus/resources/views/front/career/partials/stats.blade.php
T

43 lines
2.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!-- Stats Grid -->
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6 mb-8">
<div class="bg-white p-6 rounded-3xl border border-slate-100 shadow-lg flex items-center gap-4">
<div class="w-12 h-12 rounded-2xl bg-blue-50 text-blue-600 flex items-center justify-center text-2xl">
<i class="uil uil-users-alt"></i>
</div>
<div>
<span class="text-xs font-bold text-slate-400 block uppercase">Toplam Stajyer</span>
<span class="text-2xl font-extrabold text-slate-800">{{ $allInterns->count() }}</span>
</div>
</div>
<div class="bg-white p-6 rounded-3xl border border-slate-100 shadow-lg flex items-center gap-4">
<div class="w-12 h-12 rounded-2xl bg-emerald-50 text-emerald-600 flex items-center justify-center text-2xl">
<i class="uil uil-check-circle"></i>
</div>
<div>
<span class="text-xs font-bold text-slate-400 block uppercase">Kabul Edilen</span>
<span class="text-2xl font-extrabold text-slate-800">{{ $allInterns->where('status', 'accepted')->count() }}</span>
</div>
</div>
<div class="bg-white p-6 rounded-3xl border border-slate-100 shadow-lg flex items-center gap-4">
<div class="w-12 h-12 rounded-2xl bg-amber-50 text-amber-600 flex items-center justify-center text-2xl">
<i class="uil uil-hourglass-half"></i>
</div>
<div>
<span class="text-xs font-bold text-slate-400 block uppercase">Evrak Bekleyen</span>
<span class="text-2xl font-extrabold text-slate-800">{{ $allInterns->where('status', 'waiting_document')->count() }}</span>
</div>
</div>
<div class="bg-white p-6 rounded-3xl border border-slate-100 shadow-lg flex items-center gap-4">
<div class="w-12 h-12 rounded-2xl bg-indigo-50 text-indigo-600 flex items-center justify-center text-2xl">
<i class="uil uil-github-alt"></i>
</div>
<div>
<span class="text-xs font-bold text-slate-400 block uppercase">Git Tanımlayan</span>
<span class="text-2xl font-extrabold text-slate-800">{{ $allInterns->whereNotNull('github_repo')->count() }}</span>
</div>
</div>
</div>