@extends('layouts.admin') @section('title') {{ __('Dashboard') }} @endsection @php $logo_path = \App\Models\Utility::get_file('/'); @endphp @section('action-button') @if (Auth::user()->type == 'admin')
@if (Auth::user()->is_trial_done && Auth::user()->is_plan_purchased == 0) @if (Auth::user()->plan_expire_date < date('Y-m-d')) {{ __('Your trial is Expired on ') }} @else {{ __('Your trial is Expires on ') }} @endif @elseif(Auth::user()->plan != '' && Auth::user()->plan_expire_date < date('Y-m-d')) {{ __('Your Plan is Expired on ') }} @endif @if ($plan) {{ __('Your Plan is Expires on ') }} @endif {{ date('d M Y', strtotime(\Auth::user()->plan_expire_date)) }}
{{ __('Tasks') }} | {{ __('Project') }} | {{ __('Stage') }} | {{ __('Completion') }} |
---|---|---|---|
{{ $due_task->project->title }} | {{ \App\Models\ProjectTask::$priority[$due_task->priority] }} |
{{ $due_task->taskProgress()['percentage'] }}
|