@extends('emails.layout') @section('content')
{{__("Hello")}}
{{ $data['user']['first_name'] }} {{$data['user']['last_name']}}
We would like to inform you that a patient has initiated a call at Vetypet. Below, you will find the details of the call:
Pet Owner's Name: {{ $data['client']['full_name'] }}
Date and Time of Call Start: {{ $data['date'] }}
Please choose between accepting or declining this call by clicking on one of the buttons below:
@component('components.email-button-primary', [ 'url' => $data['accept_url'] ]) {{__('Accept Call')}} @endcomponent @component('components.email-button-warning', [ 'url' => $data['decline_url'] ]) {{__('Decline Call')}} @endcomponent
We appreciate your attention and commitment to our patients at Vetypet.
@endsection