@extends('layouts.main-app') @section('title', 'About Us') @section('content') @include('layouts.header') {{-- news article--}}

{{ $brands->name ?? 'Default Title' }}

{{-- section brand --}}
@foreach($brandItems as $item)
@php $images = json_decode($item->image, true); @endphp {{ $item->name }}
@endforeach

{!! $brandItems->first()->name ?? 'Default Title' !!}

Model

{!! $brandItems->first()->model ?? 'Default Title' !!}


Specifications/ Features

{!! $brandItems->first()->specification !!}


Approved/ Standard

{!! $brandItems->first()->standard !!}


Size

{!! $brandItems->first()->size !!}


Colour

{!! $brandItems->first()->color !!}


@endsection