@extends('layouts.front.login-site') @section('content') {{-- get Category type manually --}} @php use App\Models\Admin\BuildingCategoryType; $type = BuildingCategoryType::where('slug', $material->type)->first(); @endphp {{-- @dd($material) --}}
{{ $material->title }}
{{ $material->user->status ?? '' }}

{{ $material->title }}

{{ $type->type }}
    {{--
  • Michaelhomes.com
  • --}}
  • {{ $material->user->fb ?? '' }}
  • {{ $material->user->email ?? '' }}
  • {{ $material->user->phone ?? '+234' }}
Description
  1. {{ $material->quantity }} ---- {{ $item->denomination ?? '₦' }} {{ number_format($material->price) }}
  2. {{--
  3. 1 bag ---- #600000
  4. --}}
Share
Reviews
@if ($reviews !== null) {{-- @dd($reviews) --}}
@foreach ($reviews->take(4) as $item)

{!! $item->review !!}

@endforeach
@endif Post a comment
@if ($similarMaterial->count() > 0) {{-- Deals Begins --}}
Other {{ $type->type }} Option
See more
@foreach ($similarMaterial as $item)
{{ $item->title }}
{{ $item->title }}

{{ $item->denomination ?? '₦' }} {{ number_format($item->price) }} {{-- $ 200,000 --}} {{ $item->quantity }}

View
@endforeach
@endif @include('front.users.agents.share-modal') @include('front.users.building-material.modal.review') @include('front.users.building-material.modal.message') @endsection