@component('mail::message')

Customer Satisfaction

The user {{ $customerSatisfaction->user->name }} has ranked the {{ !is_null($customerSatisfaction->step) ? "step {$customerSatisfaction->step}" : 'full' }} {{ !is_null($customerSatisfaction->step) ? 'of the' : '' }} process {{ $customerSatisfaction->process->client->company_name }} {{ $customerSatisfaction->process->tax_year }}

Process Customer Satisfaction

@foreach ($customerSatisfactions as $cs) @endforeach
{{ !is_null($cs->step) ? "Step {$cs->step}" : 'Full process' }}
@if (!is_null($cs->step)) @else {{ $cs->rating }} @endif
Comments: {!! nl2br($cs->comments) !!}
User: {{ $cs->user->name }}
Created: {{ $cs->created_at }}
Updated: {{ $cs->updated_at }}

Go to Process

@endcomponent