Update Laravel to 7.0

This commit is contained in:
George Frederick "Buzz" Beurling
2020-06-20 17:03:30 -04:00
parent f104c1b61b
commit 8866cafd31
57 changed files with 8739 additions and 2281 deletions

View File

@@ -20,7 +20,7 @@
<div class="col-12 d-none" id="descContainer{{$niveau}}-{{$periode}}">
<div class="form-group">
<label for="exampleFormControlTextarea1">Description de la période</label>
<textarea class="form-control" name="desc_n{{$niveau}}_p{{$periode}} no-mandatory" id="exampleFormControlTextarea1" rows="2">{{$desc}}</textarea>
<textarea class="form-control" name="desc_n{{$niveau}}_p{{$periode}} no-mandatory" id="exampleFormControlTextarea1" rows="2" placeholder="Description de la période">{{$desc}}</textarea>
</div>
</div>
<div class="col-6 mb-1" id="OCOMContainer{{$niveau}}-{{$periode}}">

View File

@@ -1,7 +1,7 @@
@extends('layouts.admin.main')
@section('content')
<form action="/admin/schedule/event/add" method="POST">
<form action="/admin/schedule/event/add" method="POST" enctype="multipart/form-data">
<div class="row">
@csrf
<div class="col-9">
@@ -69,7 +69,7 @@
<span class="input-group-text btn-file">
<span class="fileinput-new cursor">Select file</span>
<span class="fileinput-exists cursor">Change</span>
<input type="file" name="file_msg" multiple>
<input type="file" name="files[]" multiple>
</span>
</span>
</div>
@@ -97,7 +97,7 @@
</div>
<div id="collapseThree" class="collapse" role="tabpanel" aria-labelledby="headingThree" data-parent="#accordion">
<div class="card-body" style="overflow: scroll">
<div id="scheduleEditor" class="m-3" style="width: 110vw">
<div id="editor" class="m-3" style="width: 110vw">
@loaderDot
</div>
</div>
@@ -250,13 +250,12 @@
});
</script>
<script src="/js/calendar.js"></script>
<script src="/js/plugins/schedule/editor.js"></script>
<script src="/js/plugins/schedule/editorv2.js"></script>
<script src="/js/plugins/autocomplete.js"></script>
<script>
$(function () {
console.log('Document READY loading schedule editor');
loadEventType('{{$date}}');
loadEventType('{{$date}}',2);
})
</script>
@endsection