@extends('layouts.app') @section('title', 'SEU CRM - ' . __('app.task_details')) @section('content')
{{ $task->description }}
| {{ __('app.task_details') }} ID : | : | #{{ $task->id }} |
| {{ __('app.status') }} | : | {{ ucfirst(str_replace('_', ' ', $task->status)) }} |
| {{ __('app.priority') }} | : | {{ ucfirst($task->priority) }} |
| {{ __('app.due_date') }} | : | {{ $task->due_at->format('M d, Y') }} |
| {{ __('app.assigned_to') }} | : |
{{ substr($task->owner->name ?? 'Unknown', 0, 1) }}
{{ $task->owner->name ?? 'Unknown' }}
|
| {{ __('app.created') }} | : | {{ $task->created_at->format('M d, Y') }} |
| {{ __('app.updated_at') }} | : | {{ $task->updated_at->format('M d, Y') }} |