Ignore:
Timestamp:
02/11/24 18:29:24 (9 months ago)
Author:
bube-ristovska <ristovska725@…>
Branches:
main
Children:
7e9dadd
Parents:
d9c4096
Message:

Add policeman

File:
1 edited

Legend:

Unmodified
Added
Removed
  • resources/views/filter.blade.php

    rd9c4096 r92df8cd  
    280280                    <tr>
    281281                        <th class="text-left py-3 px-4 uppercase font-semibold text-sm">ЕМБГ</th>
    282                         <th class="w-1/3 text-left py-3 px-4 uppercase font-semibold text-sm">Име</th>
    283                         <th class="w-1/3 text-left py-3 px-4 uppercase font-semibold text-sm">Презиме</th>
    284                         <th class="w-1/3 text-left py-3 px-4 uppercase font-semibold text-sm">Пол</th>
    285                         <th class="w-1/3 text-left py-3 px-4 uppercase font-semibold text-sm">Адреса</th>
    286                         <th class="w-1/3 text-left py-3 px-4 uppercase font-semibold text-sm">Држава</th>
    287                         <th class="w-1/3 text-left py-3 px-4 uppercase font-semibold text-sm">Националност</th>
     282                        <th class=" text-left py-3 px-4 uppercase font-semibold text-sm">Име</th>
     283                        <th class="text-left py-3 px-4 uppercase font-semibold text-sm">Презиме</th>
     284                        <th class=" text-left py-3 px-4 uppercase font-semibold text-sm">Пол</th>
     285                        <th class=" text-left py-3 px-4 uppercase font-semibold text-sm">Адреса</th>
     286                        <th class=" text-left py-3 px-4 uppercase font-semibold text-sm">Држава</th>
     287                        <th class=" text-left py-3 px-4 uppercase font-semibold text-sm">Националност</th>
    288288                        <th class="text-left py-3 px-4 uppercase font-semibold text-sm">Телефон</th>
    289289                    </tr>
     
    293293                    @foreach($peoples as $people)
    294294                        <tr>
    295                             <td class="w-1/3 text-left py-3 px-4">{{$people->embg}}</td>
    296                             <td class="w-1/3 text-left py-3 px-4">{{$people->first_name}}</td>
    297                             <td class="w-1/3 text-left py-3 px-4">{{$people->last_name}}</td>
    298                             <td class="w-1/3 text-left py-3 px-4">{{$people->gender}}</td>
    299                             <td class="w-1/3 text-left py-3 px-4">{{$people->address}}</td>
    300                             <td class="w-1/3 text-left py-3 px-4">{{$people->country}}</td>
    301                             <td class="w-1/3 text-left py-3 px-4">{{$people->nationality}}</td>
    302                             <td class="text-left py-3 px-4"><a class="hover:text-blue-500" href="tel:622322662">{{$people->contact}}</a></td>
     295                            <td class=" text-left py-3 px-3">{{$people->embg}}</td>
     296                            <td class=" text-left py-3 px-3">{{$people->first_name}}</td>
     297                            <td class=" text-left py-3 px-3">{{$people->last_name}}</td>
     298                            <td class=" text-left py-3 px-3">    {{ $people->gender === 'F' ? 'Ж' : 'М' }}</td>
     299                            <td class=" text-left py-3 px-3">{{$people->address}}</td>
     300                            <td class=" text-left py-3 px-3">{{$people->country}}</td>
     301                            <td class=" text-left py-3 px-3">{{$people->nationality}}</td>
     302                            <td class="text-left py-3 px-3"><a class="hover:text-blue-500" href="tel:622322662">{{$people->contact}}</a></td>
    303303                        </tr>
    304304                    @endforeach
Note: See TracChangeset for help on using the changeset viewer.