A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

events.blade.php 412B

12345678910111213141516171819
  1. @extends('default')
  2. @section('title', 'Event Log')
  3. @section('breadcrumb')
  4. <a href="{{ route('index') }}">Home</a>
  5. <a>></a>
  6. <a href="{{ route('events') }}">Event Log</a>
  7. @endsection
  8. @section('content')
  9. @foreach($events as $key => $event)
  10. @include('partial/event')
  11. @endforeach
  12. @endsection
  13. @section('scripts')
  14. <link rel='stylesheet' type='text/css' href='/css/page/events.css'/>
  15. @endsection