Commit ea208551 authored by alissonalbuquerque's avatar alissonalbuquerque
Browse files

update

parent a4a9def8
@php
use App\Models\Util\Status;
@endphp
<div class="tab-pane active" id="home" role="tabpanel" aria-labelledby="home-tab">
<div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3 border-bottom">
<h1 class="h2">Bem Vindo ao PDA</h1>
</div>
<div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3">
{{-- <h3>
<i class="bi bi-exclamation-octagon-fill"></i>
Atividades pendentes
</h3> --}}
</div>
<div class="d-flex">
@foreach($userPads as $userPad)
@if($userPad->pad->status === Status::ATIVO)
<div class="card mx-2" style="width: 12rem;">
<div class="card-body">
<div class="text-end">
<span class="badge bg-primary">{{ $userPad->pad->statusAsString() }}</span>
</div>
<h1 class="text-center"> <i class="bi bi-book-half"></i> </h1>
<h5 class="text-center"> PDA: {{ $userPad->pad->nome }} </h4>
<div class="text-center">
<h4 class="h5"> <span class="badge bg-primary">Horas: {{ $userPad->totalHoras() }}</span> </h4>
</div>
<a class="stretched-link" href="{{ route('pad_view', ['id' => $userPad->id]) }}"></a>
</div>
</div>
@endif
@endforeach
</div>
</div>
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment