Changeset 92df8cd for resources/views/filter.blade.php
- Timestamp:
- 02/11/24 18:29:24 (9 months ago)
- Branches:
- main
- Children:
- 7e9dadd
- Parents:
- d9c4096
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
resources/views/filter.blade.php
rd9c4096 r92df8cd 280 280 <tr> 281 281 <th class="text-left py-3 px-4 uppercase font-semibold text-sm">ЕМБГ</th> 282 <th class=" w-1/3text-left py-3 px-4 uppercase font-semibold text-sm">Име</th>283 <th class=" w-1/3text-left py-3 px-4 uppercase font-semibold text-sm">Презиме</th>284 <th class=" w-1/3text-left py-3 px-4 uppercase font-semibold text-sm">Пол</th>285 <th class=" w-1/3text-left py-3 px-4 uppercase font-semibold text-sm">Адреса</th>286 <th class=" w-1/3text-left py-3 px-4 uppercase font-semibold text-sm">Држава</th>287 <th class=" w-1/3text-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> 288 288 <th class="text-left py-3 px-4 uppercase font-semibold text-sm">Телефон</th> 289 289 </tr> … … 293 293 @foreach($peoples as $people) 294 294 <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> 303 303 </tr> 304 304 @endforeach
Note:
See TracChangeset
for help on using the changeset viewer.