@extends('admin.template.master') @section('title', $title) @section('content') @php $userjobview= Auth::user()->jobsview; $userjobedit= Auth::user()->jobsedit; $userjobdel= Auth::user()->jobsdel; @endphp

Jobs

@include('admin.partials.flash_message') @foreach($content as $k=>$u) @foreach($users as $k=>$us) @if($u->organisation == $us->id) @endif @endforeach @endforeach
S.no Job Title User Id Organisation Job Type Publish On Closing On Action
{{ ++$k }} {{ $u->job_title }}{{ $us->user_id }} {{ $us->name }}{{ $u->job_type }} {{ Carbon\Carbon::parse($u->publish_date)->format('d-M-Y') }} {{ Carbon\Carbon::parse($u->closing_date)->format('d-M-Y') }} @php $userId= Auth::user()->user_type; @endphp @if ($userId == 0)
{{ csrf_field() }}
@endif @if($userjobdel == 1) @endif @if($userjobdel == 1)
{{ csrf_field() }}
@endif
S.no Job Title User Id Organisation Job Type Publish On Closing On Action
@endsection