@extends('app.dashboard') @section('content')
@csrf @if ($type == 1) @elseif ($type == 2) @elseif ($type == 3) @endif
@if ($type == 1 || $type == 3) @elseif($type == 2) @endif @foreach($orders as $order) @if ($type == 1 || $type == 3) @elseif($type == 2) @endif @endforeach
Order # Property Address City County State Status All User
{{ $order->order_number }} {{ $order->property_addressline1 }} {{ $order->property_city }} {{ $order->county_name }} {{ $order->short_code }} {{ $order->status_type }} {!! ucfirst($order->user_name) !!}
@if ($type == 1) @elseif($type == 2) @elseif($type == 3) @endif
@endsection