@extends('layouts.app') @section('title', 'User Calendar') @section('content')
@if (request('action') == 'edit') {{ link_to_route('users.calendar', __('app.done'), [], ['class' => 'btn btn-default btn-xs']) }} @else {{ link_to_route('users.calendar', __('event.edit'), ['action' => 'edit'], ['class' => 'btn btn-warning btn-xs']) }} @endif

User Calendar Click to add/edit events

@endsection @section('ext_css') {!! Html::style(url('assets/css/plugins/fullcalendar.min.css')) !!} @endsection @section('ext_js') {!! Html::script(url('assets/js/plugins/moment.min.js')) !!} {!! Html::script(url('assets/js/plugins/fullcalendar.min.js')) !!} @endsection @section('script') @endsection