@extends("admin.layouts.app") @section("content") @if(session('success'))
Source | Model Name | Manufacturer Name | Device Name | Unique Device ID | Steps |
---|---|---|---|---|---|
{{ $source->source }} | {{ $source->model_name }} | {{ $source->manufacturer_name }} | {{ $source->device_name }} | {{ $source->unique_device_id }} |
{{-- Current steps value --}}
{{ $source->steps }}
{{-- If it's a Watch entry, allow editing/updating steps --}}
@if($source->model_name === 'Watch')
{{-- If there's already a reason, show a warning --}}
@if($source->reason)
Warning: This Watch entry was already edited.
@endif
@endif
Reason: "{{ $source->reason }}" |