19 lines
655 B
PHP
19 lines
655 B
PHP
@extends('desktop.Layouts.BilettmLayout')
|
|
@section('content')
|
|
@include('desktop.ViewEvent.Partials.HeaderSection')
|
|
|
|
@include('desktop.ViewEvent.Partials.CreateOrderSection')
|
|
|
|
@include('desktop.ViewEvent.Partials.FooterSection')
|
|
@endsection
|
|
@section('after_scripts')
|
|
@include("Shared.Partials.LangScript")
|
|
{!!HTML::script(config('attendize.cdn_url_static_assets').'/assets/javascript/frontend.js')!!}
|
|
<script>
|
|
var OrderExpires = {{strtotime($expires)}};
|
|
</script>
|
|
@if(isset($secondsToExpire))
|
|
<script>if($('#countdown')) {setCountdown($('#countdown'), {{$secondsToExpire}});}</script>
|
|
@endif
|
|
@endsection
|