2018-11-05 15:44:25 +00:00
|
|
|
@extends('layouts.app')
|
2018-08-06 12:30:51 +00:00
|
|
|
@section('content')
|
|
|
|
|
2020-03-06 14:39:05 +00:00
|
|
|
|
2019-09-13 09:53:33 +00:00
|
|
|
<section class="normal dataset u-full-width">
|
2020-03-06 14:39:05 +00:00
|
|
|
<div id="app"></div>
|
|
|
|
</section>
|
2019-09-13 09:53:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2020-03-06 14:39:05 +00:00
|
|
|
@stop
|
2018-08-06 12:30:51 +00:00
|
|
|
|
2020-03-06 14:39:05 +00:00
|
|
|
@section('after-scripts')
|
|
|
|
<script>
|
|
|
|
window.Laravel = <?php echo json_encode([
|
|
|
|
'csrf_token' => csrf_token(),
|
|
|
|
'id' => $id,
|
|
|
|
]); ?>
|
|
|
|
</script>
|
|
|
|
<script src="{{ asset('js/landingpage/main.js') }}"></script>
|
2018-08-06 12:30:51 +00:00
|
|
|
@stop
|