@extends('admin.template.master') @section('title', $title) @section('content') @php $userfeedbackview= Auth::user()->feedbackview; $userfeedbackdel= Auth::user()->feedbackdel; @endphp

Feedbacks

@include('admin.partials.flash_message') @foreach($content as $k=>$u) @endforeach
S.no Name Email Contact Action
{{ ++$k }} {{ $u->name }} {{ $u->email }} {{ $u->contact }} @php $userId= Auth::user()->user_type; @endphp @if ($userId == 0)
{{ csrf_field() }}
@endif @if($userfeedbackdel == 1)
{{ csrf_field() }}
@endif
S.no Name Email Contact Action
@endsection