@extends('frontend::layouts.master') @php $blog = !empty($data['blog']) ? $data['blog'] : null; @endphp @section('meta') @endsection @section('content')

{{ !empty($blog['publish_at']) ? str_date($blog['publish_at'], 'd M Y') : '' }}

{{ $blog['name'] ?? '' }}

{!! mwz_getTextString($blog['detail'] ?? '') !!}

Share

@php $socials = [ 'facebook' => ['url' => 'https://www.facebook.com/sharer/sharer.php?u=', 'img' => 'sh1.svg'], 'twitter' => ['url' => 'https://twitter.com/intent/tweet?url=', 'img' => 'sh2.svg'], 'line' => ['url' => 'https://social-plugins.line.me/lineit/share?url=', 'img' => 'sh3.svg'], ]; @endphp @foreach ($socials as $social => $v) {{ $social }} @endforeach
@endsection