@extends('layouts.app') @section('content')
| Customer | Start Date | Status | Actions |
|---|---|---|---|
|
{{ $assignment->customer->CustomerName }}
{{ $assignment->customer->TelNo }}
|
{{ $assignment->start_date->format('M d, Y') }} | @if($assignment->status === 'active') Active @else {{ ucfirst($assignment->status) }} @endif | @if($assignment->status === 'active') Terminate @endif View Customer |
Are you sure you want to terminate this assignment? This action cannot be undone.