@extends('app.dashboard') @section('content')
@csrf
@foreach($orders as $order) @if ($order->is_active == 1) @elseif ($order->is_active == 0) @endif @endforeach
All Order # Property Address City County State Status Is Active
{{ $order->order_number }} {{ $order->property_addressline1 }} {{ $order->property_city }} {{ $order->county_name }} {{ $order->short_code }} {{ $order->status_type }} Active Inactive
@endsection