@extends('admin.layout.master') @section('body')

{{$page_title}} Add job

@foreach($careers as $job) @endforeach
Job title Location Salary Offer type Description Expires Applicants Added Actions
{{ $job->title }} {{ $job->location }} {{ $job->salary }} {{ $job->job_type }} {{ strip_tags(str_limit($job->description, 20)) }} {!! $job->expires !!} {{ $job->applicants_count }} @if ($job->applicants_count > 0) View @endif {{ $job->created_at->diffForHumans() }} Edit
{{ csrf_field() }} {{ method_field('DELETE') }}
@endsection @section('script') @stop