@extends('layouts/contentNavbarLayout')
@section('page-script')
@endsection
@section('title', 'Designplus - Career')
@section('content')
Career / Manage Career
@if(session('success') || session('error'))
{{ session('success') ? session('success') : session('error') }}
@endif
@foreach($columns as $column)
@if ($column !== 'id' && $column !== 'gender' && $column !== 'pin'&& $column !== 'phone'&& $column !== 'updated_at') {{-- Skip the 'id' column --}}
@if ($column === 'image_path')
| Banner Image |
@else
{{ ucfirst($column) }} |
@endif
@endif
@endforeach
Actions |
@foreach($paginationdata as $item)
@foreach($columns as $column)
@if ($column !== 'id' && $column !== 'gender' && $column !== 'pin' && $column !== 'phone' && $column !== 'updated_at')
|
@if ($column === 'resume')
{{-- Display download link for resume --}}
@if (!empty($item->{$column}))
Download Resume
@endif
@else
{{ $item->{$column} }}
@endif
|
@endif
@endforeach
|
@foreach ($item->getTableColumns() as $column)
@if ($column !== 'id')
- {{ ucfirst(str_replace('_', ' ', $column)) }}:
-
@if ($column === 'resume' && !empty($item->{$column}))
Download Resume
@else
{{ $item->{$column} }}
@endif
@endif
@endforeach
@endforeach
@endsection