@extends('layouts.app') @section('content')
@if ($client->logo)
@endif
{{ $client->name }}
Client Information

{!! strip_tags($client->description) !!}

@php $status = $client->status ? 'Published' : 'Draft'; $color = $client->status ? 'success' : 'danger'; @endphp
Contact {{ $client->contact }}
Manager {{ $client->manager_name ?? 'Not Provided' }}
Manager Contact {{ $client->manager_contact ?? 'Not Provided' }}
POC Name {{ $client->poc_name ?? 'Not Provided' }}
POC Contact {{ $client->poc_contact ?? 'Not Provided' }}
Status {{ $status }}
Created At {{ getFormatted(date: $client->created_at) }}
{{--
Assigned To
--}}
{{ $client->products->count() }}

Products

Activity Log
@foreach ($client->products as $product) @php $status = $client->status ? 'Published' : 'Draft'; $color = $client->status ? 'success' : 'danger'; @endphp @endforeach
Title Created At Status
{{ getFormatted(date: $product->created_at) }}{{ $status }}
@php $documents = array_filter([ 'logo' => $client->log, 'promised-document' => $client->promised_document, 'poc-document' => $client->poc_document, ]); @endphp
@foreach ($documents as $key => $url) @endforeach
File Name Action
@endsection