@extends('layouts/layout') @section('title', 'Patrolling Rounds') @push('style') @endpush @section('content') @if ($message = Session::get('success')) @include('sweetalert::alert') @endif
Edit Patrolling Round
@csrf @method('PUT')

@php $statusLabel = $patrollingRound->completed_at === null ? 'Inprocess' : 'Completed'; $badgeClass = $patrollingRound->completed_at === null ? 'bg-warning' : 'bg-success'; @endphp
@endsection