@extends('main') @section('css') @endsection @section('content')
@include("left_menu")

{{ucwords($msg_details->title)}}

@if(Auth::User()->selected_profile!='T') @endif
@if (Session::get('error_msg'))
{{Session::get('error_msg')}}
@endif @if (Session::get('succ_msg'))
{{Session::get('succ_msg')}}
@endif @if(Auth::User()->id==$msg_details->sender_profile_id)
Interested Users
    @if(count($inv_user_det['intr_prof'])) @foreach($inv_user_det['intr_prof'] as $u)
  • {{ucwords($u->username)}}
  • @endforeach @else
  • No users
  • @endif
Maybe users
    @if(count($inv_user_det['maybe_prof'])) @foreach($inv_user_det['maybe_prof'] as $u)
  • {{ucwords($u->username)}}
  • @endforeach @else
  • No users
  • @endif
Rejected Users
    @if(count($inv_user_det['rej_prof'])) @foreach($inv_user_det['rej_prof'] as $u)
  • {{ucwords($u->username)}}
  • @endforeach @else
  • No users
  • @endif
@endif
{{ucwords($msg_details->user_det)}}
Title
{{$msg_details->inv_title}}
Company Name
{{$msg_details->company_name}}
URL
{{$msg_details->company_url}}

 

@if($msg_details->attachment)

Attachment :

{{ ($msg_details->attachment_name != '') ? $msg_details->attachment_name : $msg_details->attachment }} @endif
12:00 am Jan 01, 1970

 

@if($msg_details->inv_reply) @endif
@endsection @section('js') @endsection