@extends('layouts.list_pdf') @section('pdf-title') {{ __('Milestone Lists') }} @endsection @section('header-info')

{{ __('Milestone Lists') }}

@if (isset($projectData) && !empty($projectData))

{{ __('Project:') }} {{ $projectData->name }}

@endif

{{ __('Print Date:') }} {{ formatDate(date('d-m-Y')) }}

@endsection @section('list-table') @foreach($milestones as $milestone) @endforeach
{{ __('Name') }} {{ __('Due Time') }} {{ __('Created') }}
{{ $milestone->name }} {{ formatDate($milestone->due_date) }} {{ formatDate($milestone->created_at) }}
@endsection