Beautymail for Laravel 5.6 href标签在Safari中不起作用 @extends('beautymail::templates.sunny') @节(“内容”) @包括('beautymail::templates.sunny.heading'[ '标题'=>'你好!', “级别”=>“h1”, ]) @包括('beautymail::templates.sunny.contentStart')

Beautymail for Laravel 5.6 href标签在Safari中不起作用 @extends('beautymail::templates.sunny') @节(“内容”) @包括('beautymail::templates.sunny.heading'[ '标题'=>'你好!', “级别”=>“h1”, ]) @包括('beautymail::templates.sunny.contentStart'),laravel,email,safari,laravel-5.6,laravel-mail,Laravel,Email,Safari,Laravel 5.6,Laravel Mail,今天将是伟大的一天 @包括('beautymail::templates.sunny.contentEnd') @包括('beautymail::templates.sunny.button'[ “标题”=>“单击我”, '链接'=>'http://google.com' ]) @停止 @extends('beautymail::templates.sunny') @section('content') @include ('beautymail::templates.sunny.

今天将是伟大的一天

@包括('beautymail::templates.sunny.contentEnd') @包括('beautymail::templates.sunny.button'[ “标题”=>“单击我”, '链接'=>'http://google.com' ]) @停止
@extends('beautymail::templates.sunny')

@section('content')

    @include ('beautymail::templates.sunny.heading' , [
        'heading' => 'Hello!',
        'level' => 'h1',
    ])

    @include('beautymail::templates.sunny.contentStart')

        <p>Today will be a great day!</p>

    @include('beautymail::templates.sunny.contentEnd')

    @include('beautymail::templates.sunny.button', [
            'title' => 'Click me',
            'link' => 'http://google.com'
    ])

@stop