@extends('layouts/contentNavbarLayout') @section('title', 'Zillion') @section('content') @if(session('success'))
{{ session('success') }}
@endif
Contract Signed - Staff Assignment & Work List

Total 6 works you have pending

@foreach($activities as $activity)
{{ $activity->clientModel->name }}

{{ $activity->created_at->format('d-M-Y') }}

{{ $activity->title }}

{{ $activity->description }}

Task Progress: %

{{-- assigned staff --}}
    @php // Get all assigned users for the activity in one query $assignedUsers = \App\Models\User::whereIn('id', \App\Models\ActivityLog::where('activity_id', $activity->id)->pluck('user_id') )->get(); @endphp @foreach($assignedUsers as $user)
  • @if($user->profile_image) {{ $user->name }} @else Avatar @endif
  • @endforeach
{{-- /end --}} {{-- actions --}} {{-- end actions --}}
{{-- edit task --}}
Edit Activity: {{ $activity->title }}
{{--
--}}
@csrf @method('PUT')
{{-- /end --}}
Project Workflow {{ $activity->title }}
  • 12 Invoices have been paid
    12 min ago

    Invoices have been paid to the company

    img invoices.pdf
  • Client Meeting
    45 min ago

    Project meeting with john @10:15am

    Avatar

    Lester McCarthy (Client)

    CEO of ThemeSelection
  • Create a new project for client
    2 Day Ago

    6 team members in a project

      • Avatar
      • Avatar
      • Avatar
      • +3
{{-- end modules --}} @endforeach
{{-- add Modules --}} @endsection