@extends('admin.template.master')
@section('title', $title)
@section('content')
@php
$userrfpview= Auth::user()->rfpview;
$userrfpedit= Auth::user()->rfpedit;
$userrfpdel= Auth::user()->rfpdel;
@endphp
New RFPs
| S.no |
RFP Title |
Organisation |
Publish On |
Closing On |
Action
|
@foreach($content as $k=>$u)
| {{ ++$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)
@endif
|
@endforeach
@endsection