Update timeline views

This commit is contained in:
Daniel Supernault 2019-03-09 22:25:38 -07:00
parent 6d204343bc
commit 8ee415d66b
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
3 changed files with 18 additions and 2 deletions

View File

@ -2,7 +2,7 @@
@section('content')
<timeline></timeline>
<timeline scope="home"></timeline>
@endsection

View File

@ -2,7 +2,7 @@
@section('content')
<timeline></timeline>
<timeline scope="local"></timeline>
@endsection

View File

@ -0,0 +1,16 @@
@extends('layouts.app')
@section('content')
<timeline scope="network"></timeline>
@endsection
@push('scripts')
<script type="text/javascript" src="{{ mix('js/timeline.js') }}"></script>
<script type="text/javascript">
new Vue({
el: '#content'
});
</script>
@endpush