@extends('customer.layouts.new-app') @section('title') Customer Care:History Defect Report @endsection @section('content')
@include('customer.customer_care.sidebar')

YOUR DEFECT REPORT

@foreach ($defect as $item)
Created At: {{ date('l jS \\of F Y H:i a', strtotime($item->created_at)) }}
Description: {{ $item->description }}

@endforeach
@endsection @section('js') @endsection