@extends('layouts.app') @section('title', 'Pending Commands') @section('content') @foreach($campaigns as $campaign)
@foreach($campaign->commands as $command)
{{ $command->title }}
@if(isUser(\App\User::TeamLead))
{{ $command->tech_id ? $command->tech->name : '-' }}
@endif
{{ $command->due_date ? $command->due_date->toDateString() : '-' }} {{ $command->due_time ? $command->due_time->format('h:i A') : '' }}
{!! $command->note ? nl2br($command->note) : '-' !!}
@if(\Gate::allows('campaigns-commands-mark-complete')) Mark As Complete @endif
@endforeach
@endforeach @stop @push('script') @endpush