@extends('layouts.admin')
@section('page-title')
{{__('Task Calendar')}}
@endsection
@push('css-page')
@endpush
@section('breadcrumb')
{{__('Dashboard')}}
{{__('Task Calendar')}}
@endsection
@section('content')
Tasks
@foreach($arrTasks as $task)
-
{{$task['title']}}
{{$task['start']}} to {{$task['end']}}
@endforeach
@endsection
@push('script-page')
@endpush