@extends('layouts.app') @section('title', 'Create API Source') @section('breadcrumb') @endsection @section('content')
@if(session('success')) @endif @if(session('csrf_fixed')) @endif @if(session('error')) @endif @if($errors->any()) @endif

Create API Source

Back to List
API Source Information
@csrf
@error('name')
{{ $message }}
@enderror
@error('status')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror

API Configuration
@error('url')
{{ $message }}
@enderror
@error('method')
{{ $message }}
@enderror
@error('table_name')
{{ $message }}
@enderror

Authentication
@error('auth_type')
{{ $message }}
@enderror

Scheduling
@error('schedule_type')
{{ $message }}
@enderror
Help & Tips
API URL

Enter the complete URL of the API endpoint you want to fetch data from.

HTTP Method

Choose the appropriate HTTP method. GET is most common for fetching data.

Table Name

Specify the database table where the fetched data will be stored.

Authentication

If the API requires authentication, select the appropriate type and provide the token.

Scheduling

Set how often the API should be called automatically. Choose "Manual" for on-demand execution.

Preview
URL: Not set
Method: Not set
Table: Not set
Auth: Not set
Schedule: Not set
@push('scripts') @endpush @endsection