@extends('admin.template.master') @section('title', $title) @section('content') @php $userrfpview= Auth::user()->rfpview; $userrfpedit= Auth::user()->rfpedit; $userrfpdel= Auth::user()->rfpdel; @endphp

RFP

@include('admin.partials.flash_message') @foreach($content as $k=>$u) @php $todaydate = date('Y-m-d', strtotime('+3 days', strtotime(NOW()))); @endphp @if($u->closing_date <= $todaydate) @else @endif @if($u->organisation != "Select") @foreach($users as $k=>$us) @if($u->organisation == $us->id) @endif @endforeach @else @endif @endforeach
S.no RFP Title User Id Organisation Org. Pub. Date Closing Date Web Pub. Date Action
{{ ++$k }} @if($u->rfp_title) {{ $u->rfp_title }} @else N/A @endif {{ $us->user_id }} {{ $us->name }}N/A N/A{{ Carbon\Carbon::parse($u->publish_date)->format('d-M-Y') }} {{ Carbon\Carbon::parse($u->closing_date)->format('d-M-Y') }} {{ Carbon\Carbon::parse($u->portal_date)->format('d-M-Y') }}
{{ csrf_field() }}
S.no RFP Title User Id Organisation Org. Pub. Date Closing Date Web Pub. Date Action
@endsection