@extends('layouts.location') @section('title', 'Replenishment') @section('page-title', 'Replenishment') @section('content')
Replenishment
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@csrf
@if(isset($lastSnapshotAt) && $lastSnapshotAt)

Last snapshot: {{ \Carbon\Carbon::parse($lastSnapshotAt)->format('Y-m-d H:i') }}

@endif
@endsection