%PDF- %PDF-
Direktori : /var/www/html/workeasy-api/resources/views/vendor/mail/html/ |
Current File : /var/www/html/workeasy-api/resources/views/vendor/mail/html/index.blade.php |
{{--@component('mail::message')--}} {{-- Header --}} {{--@slot('header')--}} {{--@component('mail::header', ['url' => config('app.url')])--}} {{--{{ config('app.name') }}--}} {{--@endcomponent--}} {{--@endslot--}} {{-- Body --}} {{--<ul class="list-group">--}} {{--@foreach ($slot as $experience)--}} {{--<li class="list-group-item">{!! $experience->position!!}</li>--}} {{--@endforeach--}} {{--</ul>--}} {{-- Subcopy --}} {{--@isset($subcopy)--}} {{--@slot('subcopy')--}} {{--@component('mail::subcopy')--}} {{--{{ $subcopy }}--}} {{--@endcomponent--}} {{--@endslot--}} {{--@endisset--}} {{-- Footer --}} {{--@slot('footer')--}} {{--@component('mail::footer')--}} {{--© {{ date('Y') }} {{ config('app.name') }}. All rights reserved.--}} {{--@endcomponent--}} {{--@endslot--}} {{--@endcomponent--}} @component('mail::message') {{-- Greeting --}} @if (! empty($greeting)) # {{ $greeting }} @else @if ($level == 'error') # Whoops! @else # Hello! @endif @endif {{-- Intro Lines --}} @foreach ($introLines as $line) {!! $line !!} @endforeach {{-- Action Button --}} @isset($actionText) <?php switch ($level) { case 'success': $color = 'green'; break; case 'error': $color = 'red'; break; default: $color = 'blue'; } ?> @component('mail::button', ['url' => $actionUrl, 'color' => $color]) {!! $actionText !!} @endcomponent @endisset {{-- Outro Lines --}} <ul style="color:#3f3f3f; font-family:Arial; font-size: 14px; "> {{--@foreach ($outroLines as $line)--}} {{--<li>{!! $line !!}</li>--}} {{--@endforeach--}} <label>You have a pending candidate for the offer: "{{$offer->name}}" </label><br> @if(count($experiences) === 0) <label>The Candidate name is: {{$candidate->name}} {{$candidate->surname}}</label><br> <label>This candidate dos not have any previous work experience.</label> @else <label>The Candidate name is : {{$candidate->name}} {{$candidate->surname}} with work experiences as below : </label> <br><br> @foreach ($experiences as $index => $experience) <label><strong>Experience {{$index = $index + 1}}</strong></label> <li class="list-group-item">Position : {!! $experience->position!!}</li> <li class="list-group-item">Company : {!! $experience->company!!}</li> <li class="list-group-item">Description : {!! $experience->description!!}</li> <li class="list-group-item">Start Date : {!! $experience->start_date!!}</li> <li class="list-group-item">End date : {!! $experience->end_date!!}</li><br> @endforeach @endif </ul> {{-- Salutation --}} @if (! empty($salutation)) {!! $salutation !!} @else Regards,<br>{{ config('app.name') }} @endif {{-- Subcopy --}} @isset($actionText) @component('mail::subcopy') If you’re having trouble clicking the "{{ $actionText }}" button, copy and paste the URL below into your web browser: [{{ $actionUrl }}]({{ $actionUrl }}) @endcomponent @endisset @endcomponent