@extends('core::email') @section('content')

@if($method === 'created') You have been invited to a new event. Details are given below. @elseif($method === 'updated') An event was modified. Updated details are given below. @endif

{{ $name }}

Event Start {{ $start }}
Event End {{ $end }}
Creator {{ $creator }}
Participants @foreach($participants as $participant) {{ $participant }}
@endforeach
{!! $description !!}
@stop