@extends('emails.layouts.main')
@section('title', 'Business Pdf Downloaded')
@section('content')
|
Business PDF Downloaded
|
A business PDF has been downloaded with the following information:
@if(isset($businessData['companyName']) && $businessData['companyName'])
Company Name: {{ $businessData['companyName'] }}
@endif
@if(isset($businessData['contactName']) && $businessData['contactName'])
Contact Name: {{ $businessData['contactName'] }}
@endif
@if(isset($businessData['email']) && $businessData['email'])
Email: {{ $businessData['email'] }}
@endif
Team Discount: {{ $businessData['teamDiscount'] }}%
Team Size: {{ $businessData['teamSize'] }}
Total Price: ${{ number_format($businessData['totalPrice'], 2) }}
Year Discount: {{ $businessData['yearDiscount'] }}%
Years: {{ $businessData['years'] }}
Downloaded At: {{ now()->format('Y-m-d H:i:s') }}
|
|
@endsection