COM431_serverside_development/resources/views/jobs.blade.php
2025-02-11 11:55:09 +00:00

16 lines
305 B
PHP

<x-layout>
<x-slot:heading>
Jobs Listing
</x-slot:heading>
<h1>Jobs!</h1>
<ul>
@foreach ($jobs as $job)
<li>
<a href="/jobs/{{$job['id']}}" class="text-blue-500 hover:underline">
<strong>{{$job['title']}}</strong>: Pays {{$job['salary']}}
Per year
</a>
</li>
@endforeach
</ul>
</x-layout>