@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) @endforeach
S.no RFP Title Organisation Publish On Closing On Action
{{ ++$k }} {{ $u->rfp_title }} {{ $u->organisation }} {{ 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($userrfpdel == 1) @endif @if($userrfpdel == 1)
{{ csrf_field() }}
@endif
S.no RFP Title Organisation Publish On Closing On Action
@endsection