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

Edit Content Task

@stop @php $index_count1=1; @endphp @section('content')
@if ($errors->any()) @endif
{{ csrf_field() }}
Project {{ $content->project_nm }}
Deadline {{ date('d M Y', strtotime($content->deadline)) }}
Country {{ $content->country }}
Content Type @php $categories = [ 1 => 'Forums', 2 => 'Blogs', 3 => 'Website Content', 4 => "FAQ's", 5 => 'Tools', 6 => 'Others', 7 => 'US Blog' ]; @endphp {{ $categories[$content->content_category] ?? '' }}
Title {{ $content->title }}
Primary Keywords {{ $content->primary_keywords }}
@if($loginid == $content->emp_id and ($content->task_status == 0 or $content->task_status == 3))
@if($content->task_status == 0)
task_status == 0) checked @endif>
@else
task_status == 3) checked @endif>
@endif
task_status == 1) checked @endif>
@endif @if($loginid == 55 or $loginid == 58)
task_status == 0) style="display:none;" @endif>
task_status == 2) checked @endif>
task_status == 3) checked @endif>
@endif
task_status != 3 and ($loginid == 55 or $loginid == 58)) style="display:none;" @endif >
@stop @section('css') {{-- Add here extra stylesheets --}} {{-- --}} @stop @section('js') @stop