@extends('layouts.admin') @section('page-title') {{__('Task Calendar')}} @endsection @push('css-page') @endpush @section('breadcrumb') @endsection @section('content')
{{ __('Calendar') }}

Tasks

    @foreach($arrTasks as $task)
  • {{$task['title']}}
    {{$task['start']}} to {{$task['end']}}
  • @endforeach
@endsection @push('script-page') @endpush