feat: Implement vacancy management features including listing, creating, and editing vacancies

This commit is contained in:
2025-08-27 17:53:32 +05:45
parent 2ca99f9dbc
commit 086395a0a4
18 changed files with 180 additions and 106 deletions

View File

@@ -19,7 +19,8 @@
<div class="row pb-20">
@foreach ($careers as $career)
<div class="col col-sm-6 col-md-4">
<a href="{{ route('career.single', $career->id) }}" class="career-box flex flex-col gap-20 border">
<a href="{{ route('career.single', $career->id) }}"
class="career-box flex flex-col gap-20 border">
<span>
<h5 class="text-white bg-sec px-20 py-10 rounded-10 text-18 mb-10 ml-0 inline-block">
{{ $career->department }}</h5>
@@ -30,7 +31,8 @@
<p class="font-bold text-16 text-black m-0 ">Post Date: {{ $career->created_At }}</p>
</div>
<div class="mb-10">
<h2 class="text-16 font-medium text-gray">{{ $career->job_description }}</h2>
<h2 class="text-16 font-medium text-gray">
{{ \Illuminate\Support\Str::limit($career->job_description, 50) }}</h2>
</div>
<button>View Detail</button>
</a>