A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

26 linhas
623B

  1. @extends('default')
  2. @section('title', $user->username . ' Posts')
  3. @section('breadcrumb')
  4. <a href="{{ route('index') }}">Home</a>
  5. <a>></a>
  6. <a href="{{ route('users') }}">Users</a>
  7. <a>></a>
  8. <a href="{{ route('user', ['user' => $user->id]) }}">{{ $user->username }}</a>
  9. <a>></a>
  10. <a href="{{ route('user.posts', ['user' => $user->id]) }}">Posts</a>
  11. @endsection
  12. @section('content')
  13. {!! $paginator !!}
  14. @foreach($posts as $post)
  15. @include('partial/post')
  16. @endforeach
  17. {!! $paginator !!}
  18. @endsection
  19. @section('scripts')
  20. <link rel='stylesheet' type='text/css' href='/css/page/thread.css'/>
  21. @endsection