@extends('layouts.app') @section('title', 'API Targets') @section('breadcrumb')
Name | URL | Method | Source Table | Status | Schedule | Last Sent | Actions |
---|---|---|---|---|---|---|---|
{{ $target->name }}
@if($target->description)
{{ Str::limit($target->description, 50) }}
@endif
|
{{ $target->base_url }}
{{ $target->endpoint }}
|
{{ $target->method }} |
{{ $target->source_table }}
|
{{ $target->is_active ? 'Active' : 'Inactive' }} |
{{ ucfirst($target->schedule_type) }}
@if($target->schedule_frequency && $target->schedule_type !== 'manual')
Every {{ $target->schedule_frequency }} {{ $target->schedule_type == 'hourly' ? 'hour(s)' : ($target->schedule_type == 'daily' ? 'day(s)' : 'week(s)') }}
@endif
|
@if($target->last_sent_at)
{{ $target->last_sent_at->format('d M Y') }}
{{ $target->last_sent_at->format('H:i:s') }}
@else
Never
@endif
|
Start by creating your first API target to send data to external APIs.
Create Your First API Target