@extends('layouts.layout') @section('title', 'All Survey History') @section('content')

Survey History
@php $i = 1; @endphp @foreach($survey as $s) @endforeach
USER Survey Time Action
{{ $s->usr->name}} {{ $s->subcat->name }} {{ date("d-F-Y h:i:s A" , strtotime($s->created_at)) }} View Survey
@endsection