@extends('backend.layouts.master') @section('title') Career @endsection @section('css') @endsection @section('content')

Career

{!! Form::open(['route' => 'career.store','method'=>'post','class'=>'needs-validation','novalidate'=>'','enctype'=>'multipart/form-data']) !!}

Career details

Please enter the career title.
Please enter the Min Qualification.
Please enter the number of positions open.
Please Select the career application closing date.
Please enter the form link.
*Paste the from link from here to use it in the frontend
Please enter the salary.
{!! Form::close() !!}

Managing Director List

@if(!empty($careers)) @foreach($careers as $career) @endforeach @endif
Title Open Position End Date Type Action
{{ ucwords(@$career->name) }} {{ @$career->open_position }} {{\Carbon\Carbon::parse(@$career->end_date )->isoFormat('MMMM Do, YYYY')}} {{ ucwords(str_replace('_',' ',@$career->type)) }}
@endsection @section('js') @endsection