@extends('layout.app') @section('title', 'Products') @section('content')

Products

@foreach($products as $product) @endforeach
ID Code Project name Type Block Floor Commercial floor Status Usage area (m2) Price (VND) Purposes
{{ $product->id }} {{ $product->apartment_code }} {{ $product->block->project->name ?? '' }} {{ $product->class->name ?? '' }} {{ $product->block->name ?? '' }} {{ $product->class->number_of_floor ?? '' }} {{ $product->class->number_of_floor ?? '' }} {{ $product->status }} {{ $product->class->using_area ?? '' }} {{ number_format($product->class->average_price ?? 0, 0, ',', '.') }} @if($product->is_for_sell) For Sell @endif @if($product->is_for_lease) For Lease @endif
@endsection @section('script') {{-- --}} @endsection