Quotidien Shaarli

Tous les liens d'un jour sur une page.

July 9, 2020

Animista

Animista is a place where you can play with a collection of ready to use CSS animations, tweak them and download only those you will actually use.

Note: Laravel 7 Markdown Mail components

Instead of @component('mail:message'), we can use this for very simple customization.

@component('mail::layout')
{{-- Header --}}
@slot ('header')
@component('mail::header', ['url' => config('app.url')])
    <!-- header -->
@endcomponent
@endslot

{{-- Content here --}}

{{-- Subcopy --}}
@slot('subcopy')
@component('mail::subcopy')
<!-- subcopy -->
@endcomponent
@endslot

{{-- Footer --}}
@slot ('footer')
@component('mail::footer')
<!-- footer -->
@endcomponent
@endslot
@endcomponent