PATH:
home
/
centosnipponia
/
public_html
/
ts
/
resources
/
views
/
pages
@extends('layouts.main') @section('title', 'Calendar') @section('content') <!-- push external head elements to head --> @push('head') <link rel="stylesheet" href="{{ asset('plugins/fullcalendar/dist/fullcalendar.min.css') }}"> <link rel="stylesheet" href="{{ asset('plugins/tempusdominus-bootstrap-4/build/css/tempusdominus-bootstrap-4.min.css') }}"> @endpush <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-calendar bg-blue"></i> <div class="d-inline"> <h5>{{ __('Calendar')}}</h5> <span>{{ __('lorem ipsum dolor sit amet, consectetur adipisicing elit')}}</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="{{route('dashboard')}}"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">{{ __('UI Element')}}</a> </li> <li class="breadcrumb-item active" aria-current="page">{{ __('Calendar')}}</li> </ol> </nav> </div> </div> </div> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-body"> <div id="calendar"></div> </div> </div> </div> </div> <div class="modal" id="editEvent" tabindex="-1" role="dialog" aria-labelledby="editEventLabel" aria-hidden="true"> <div class="modal-dialog" role="document"> <form class="editEventForm"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="editEventLabel">{{ __('Edit Event')}}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> </div> <div class="modal-body"> <div class="form-group"> <label for="editEname">{{ __('Event Title')}}</label> <input type="text" class="form-control" id="editEname" name="editEname" placeholder="Please enter event title"> </div> <div class="form-group"> <label for="editStarts">{{ __('Start')}}</label> <input type="text" class="form-control datetimepicker-input" id="editStarts" name="editStarts" data-toggle="datetimepicker" data-target="#editStarts"> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-dismiss="modal">{{ __('Close')}}</button> <button class="btn btn-danger delete-event" type="submit">{{ __('Delete')}}</button> <button class="btn btn-success save-event" type="submit">{{ __('Save')}}</button> </div> </div> </form> </div> </div> <div class="modal" id="addEvent" tabindex="-1" role="dialog" aria-labelledby="addEventLabel" aria-hidden="true"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="addEventLabel">{{ __('Add New Event')}}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> </div> <div class="modal-body"> <form id="addEventForm"> <div class="form-group"> <label for="eventName">{{ __('Event Title')}}</label> <input type="text" class="form-control" id="eventName" name="eventName" placeholder="Please enter event title"> </div> <div class="form-group"> <label for="eventStarts">{{ __('Starts')}}</label> <input type="text" class="form-control datetimepicker-input" id="eventStarts" name="eventStarts" data-toggle="datetimepicker" data-target="#eventStarts"> </div> <div class="form-group mb-0" id="addColor"> <label for="colors">{{ __('Choose Color')}}</label> <ul class="color-selector"> <li class="bg-aqua"> <input type="radio" data-color="bg-aqua" checked name="colorChosen" id="addColorAqua"> <label for="addColorAqua"></label> </li> <li class="bg-blue"> <input type="radio" data-color="bg-blue" name="colorChosen" id="addColorBlue"> <label for="addColorBlue"></label> </li> <li class="bg-light-blue"> <input type="radio" data-color="bg-light-blue" name="colorChosen" id="addColorLightblue"> <label for="addColorLightblue"></label> </li> <li class="bg-teal"> <input type="radio" data-color="bg-teal" name="colorChosen" id="addColorTeal"> <label for="addColorTeal"></label> </li> <li class="bg-yellow"> <input type="radio" data-color="bg-yellow" name="colorChosen" id="addColorYellow"> <label for="addColorYellow"></label> </li> <li class="bg-orange"> <input type="radio" data-color="bg-orange" name="colorChosen" id="addColorOrange"> <label for="addColorOrange"></label> </li> <li class="bg-green"> <input type="radio" data-color="bg-green" name="colorChosen" id="addColorGreen"> <label for="addColorGreen"></label> </li> <li class="bg-lime"> <input type="radio" data-color="bg-lime" name="colorChosen" id="addColorLime"> <label for="addColorLime"></label> </li> <li class="bg-red"> <input type="radio" data-color="bg-red" name="colorChosen" id="addColorRed"> <label for="addColorRed"></label> </li> <li class="bg-purple"> <input type="radio" data-color="bg-purple" name="colorChosen" id="addColorPurple"> <label for="addColorPurple"></label> </li> <li class="bg-fuchsia"> <input type="radio" data-color="bg-fuchsia" name="colorChosen" id="addColorFuchsia"> <label for="addColorFuchsia"></label> </li> <li class="bg-muted"> <input type="radio" data-color="bg-muted" name="colorChosen" id="addColorMuted"> <label for="addColorMuted"></label> </li> <li class="bg-navy"> <input type="radio" data-color="bg-navy" name="colorChosen" id="addColorNavy"> <label for="addColorNavy"></label> </li> </ul> </div> </form> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-dismiss="modal">{{ __('Close')}}</button> <button type="button" class="btn btn-success save-event">{{ __('Save')}}</button> <button type="button" class="btn btn-danger delete-event" data-dismiss="modal">{{ __('Delete')}}</button> </div> </div> </div> </div> </div> <!-- push external js --> @push('script') <script src="{{ asset('plugins/moment/moment.js') }}"></script> <script src="{{ asset('plugins/fullcalendar/dist/fullcalendar.min.js') }}"></script> <script src="{{ asset('plugins/tempusdominus-bootstrap-4/build/js/tempusdominus-bootstrap-4.min.js') }}"></script> <script src="{{ asset('js/calendar.js') }}"></script> @endpush @endsection
[+]
..
[-] calendar.blade.php
[edit]
[-] charts-amcharts.blade.php
[edit]
[-] charts-chartist.blade.php
[edit]
[-] charts-flot.blade.php
[edit]
[-] charts-knob.blade.php
[edit]
[-] dashboard.blade.php
[edit]
[-] datatable-editable.blade.php
[edit]
[-] form-addon.blade.php
[edit]
[-] form-advance.blade.php
[edit]
[-] form-components.blade.php
[edit]
[-] form-picker.blade.php
[edit]
[-] invoice.blade.php
[edit]
[-] layout-edit-item.blade.php
[edit]
[-] layouts.blade.php
[edit]
[-] navbar.blade.php
[edit]
[-] pricing.blade.php
[edit]
[-] profile.blade.php
[edit]
[-] project.blade.php
[edit]
[-] table-bootstrap.blade.php
[edit]
[-] table-datatable.blade.php
[edit]
[-] taskboard.blade.php
[edit]
[+]
ui
[-] view.blade.php
[edit]
[-] widget-chart.blade.php
[edit]
[-] widget-data.blade.php
[edit]
[-] widget-statistic.blade.php
[edit]
[-] widgets.blade.php
[edit]
[-] forgot-password.blade.php
[edit]
[-] register.blade.php
[edit]
[-] .htaccess.disabled
[edit]