@extends('app.dashboard') @section('content')
@foreach ($status_types as $status_type) @if($status_type->id != 11) @endif @endforeach
@if($status_type->order_count == 0) @else @endif
@if($type == 8) @endif @if($type == 4) @elseif($type == 5 || $type == 6) @else @endif @foreach($orders as $order) @if($type == 8) @endif @if($type == 4) @elseif($type == 5 || $type == 6) @else @endif @endforeach
Order # Property Address City County State Assigned to Status OrderJSONFollow up Date Follow up CommentsClarification CommentsBorrower Name
{{ $order->order_number }} {{ $order->property_addressline1 }} {{ $order->property_city }} {{ $order->county_name }} {{ $order->short_code }} {!! ucfirst($order->user_name) !!} {{ $order->status_type }} {!! isset($order->followup_date) ? date("m/d/Y", strtotime($order->followup_date)) : NULL !!} {{ $order->comments }}{{ $order->comments }}{!! ucwords($order->buyer_name) !!}
@endsection