show_post.blade.php 641 B

1234567891011121314151617
  1. @extends('portfolio.layout', ['title' => "@{$user['username']}'s Portfolio Photo"])
  2. @section('content')
  3. <portfolio-post initial-data="{{json_encode(['profile' => $user, 'post' => $post, 'authed' => $authed ? true : false])}}" />
  4. @endsection
  5. @push('scripts')
  6. <script type="text/javascript" src="{{ mix('js/portfolio.js') }}"></script>
  7. <script type="text/javascript">
  8. App.boot();
  9. </script>
  10. @endpush
  11. @push('meta')<meta property="og:description" content="{{ $post['content_text'] }}">
  12. <meta property="og:image" content="{{ $post['media_attachments'][0]['url']}}">
  13. <meta name="twitter:card" content="summary_large_image">
  14. @endpush