@extends('adminlte::page') @section('title', 'Task Management') @section('content_header')

Task Assignee

@stop @php $index_count1=1; @endphp @section('content')
@if ($errors->any()) @endif
{{ csrf_field() }}
@php $vLinks = []; if($content->reassign_to > 0 or Auth::user()->id == $content->assign_to){ $vLinks = json_decode($content->video_links); } @endphp
@if(!empty($vLinks)) @foreach($vLinks as $vv) @endforeach @endif
Project {{ $content->project_nm }}
Assignor @if(Auth::user()->id == $content->assign_to) {{$content->assignor->name}} @else {{$content->assignee->name}} @endif
Assignee {{$content->reassignee->name ?? $content->assignee->name}}
Title {{ $content->title }}
Script ID {{ $content->script_id }}
Video Link {{ $vv }}
@php $vLinks = []; if($content->final_video_links != "" and $content->final_video_links != null){ $vLinks = json_decode($content->final_video_links); } @endphp
@stop @section('css') {{-- Add here extra stylesheets --}} {{-- --}} @stop @section('js') @stop