@extends('layouts.app') @section('title', 'Edit Bandwidth Log - ISP ERP System') @section('page-title', 'Edit Bandwidth Log') @section('content')

Edit Bandwidth Log

Update bandwidth log information

Bandwidth Information
@csrf @method('PUT')
@error('customer_id')
{{ $message }}
@enderror
@error('sales_invoice_item_id')
{{ $message }}
@enderror
@error('log_date')
{{ $message }}
@enderror
@error('end_date')
{{ $message }}
@enderror
@error('download_speed_mbps')
{{ $message }}
@enderror
@error('status')
{{ $message }}
@enderror
@php $employees = \App\Models\Employee::orderBy('name')->get(['id','name']); @endphp @php $currentEmpName = optional($employees->firstWhere('id', old('reference_id', $bandwidthLog->reference_id)))->name; @endphp @foreach($employees as $emp) @endforeach Start typing a name; pick from suggestions. We will save the employee ID. @error('reference_id')
{{ $message }}
@enderror
@error('notes')
{{ $message }}
@enderror
Cancel
@endsection @section('styles') @endsection