@extends('admin.layout.master') @section('content')

{{ __('obs.presentation_create') }}

Activity Timeline

@if($project)
  • Project Creation
  • {{-- --}} {{ $project->name ?? '' }}

    {{ $project->client ?? '' }}

  • Quotations
  • @foreach ($project->quotations as $quotation)
  • {{-- --}} Amount- {{ $quotation->amount }}
    {{--

    {!! display_activity_description($activity) !!}

    --}}

    @if ($quotation->status == 3) Completed @elseif ($quotation->status == 4) Cancelled @elseif ($quotation->status == 2) Running @elseif ($quotation->status == 1) Pending @else Inactive @endif {{ $quotation->outcome ?? '' }}

  • @endforeach @if ($project->presentation)
  • Presentation
  • {{-- --}} {{ $project->presentation->title }}
    {{--

    {!! display_activity_description($activity) !!}

    --}}

    @if ($project->presentation->status == 3) Completed @elseif ($project->presentation->status == 4) Cancelled @elseif ($project->presentation->status == 2) Running @elseif ($project->presentation->status == 1) Pending @else Inactive @endif {{ $project->presentation->outcome ?? '' }}

  • @endif
@else No Activity Found @endif
@section('custom_js') @endsection @endsection