@extends('layouts/contentNavbarLayout')
@section('page-script')
@endsection
@section('title', 'Designplus - Career')
@section('content')
Career / Manage Career Enquiry
@if (session('success') || session('error'))
{{ session('success') ? session('success') : session('error') }}
@endif
@foreach ($paginationdata as $item)
@foreach ($columns as $column)
@if ($column !== 'id' && $column !== 'gender' && $column !== 'pin' && $column !== 'phone' && $column !== 'updated_at')
@if ($column === 'resume' && !empty($item->{$column}))
- {{ ucfirst(str_replace('_', ' ', $column)) }}:
-
Download Resume
@else
- {{ ucfirst(str_replace('_', ' ', $column)) }}:
-
{{ $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