COM431_serverside_development/resources/views/jobs/show.blade.php
2025-03-26 16:22:33 +00:00

9 lines
202 B
PHP

<x-layout>
<x-slot:heading>
Job
</x-slot:heading>
<h2 class="font-bold txt-lg">{{ $job['title'] ?? 'No title available' }}</h2>
<p>
This job pays {{ $job['salary'] ?? 'N/A' }} per year
</p>
</x-layout>