2018-12-09 16:06:34 -07:00
|
|
|
@extends('layouts.app')
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
2019-11-24 16:13:48 -07:00
|
|
|
<timeline scope="local" layout="feed"></timeline>
|
2018-12-09 16:06:34 -07:00
|
|
|
|
|
|
|
@endsection
|
|
|
|
|
2019-12-05 00:15:25 -07:00
|
|
|
@push('styles')
|
|
|
|
<style type="text/css">
|
|
|
|
body {
|
|
|
|
background: #fff !important;
|
|
|
|
}
|
|
|
|
.navbar {
|
|
|
|
border: none !important;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
@endpush
|
|
|
|
|
2018-12-09 16:06:34 -07:00
|
|
|
@push('scripts')
|
2019-02-10 22:49:23 -07:00
|
|
|
<script type="text/javascript" src="{{ mix('js/timeline.js') }}"></script>
|
2019-03-25 22:22:25 -06:00
|
|
|
<script type="text/javascript" src="{{ mix('js/compose.js') }}"></script>
|
2018-12-09 16:06:34 -07:00
|
|
|
<script type="text/javascript">
|
|
|
|
new Vue({
|
|
|
|
el: '#content'
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
@endpush
|