@extends('layout.app') @section('content')
@foreach ($gateway as $item) @endforeach
ID Name Caller ID Retry Count Username API URL Status Action
{{ $item->id }} {{ $item->name }} {{ $item->caller_id ?? 'N/A' }} {{ $item->retry_count ?? 0 }} {{ $item->username }} {{ Str::limit($item->api_url, 40) }} @if($item->status == 'enable') Enable @else Disable @endif
Edit History
@csrf @method('DELETE')
@endsection