@extends('layouts.default') @section('meta') Job Titles | Workday Time Clock @endsection @section('content') @include('admin.modals.modal-import-jobtitle')

{{ __("Add Job Title") }} {{ __("Export") }}

@if ($errors->any())
{{ __("There were some errors with your submission") }}
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@isset($data) @foreach ($data as $j) @endforeach @endisset
{{ __("Job Title") }} {{ __("Department") }}
{{ $j->jobtitle }} @isset($d) @foreach($d as $dept) @if($j->dept_code == $dept->id) {{ $dept->department }} @endif @endforeach @endisset
@endsection @section('scripts') @endsection