@extends('layouts.customer') @section('title', 'Online Ordering Settings') @section('content') @php extract($settings); @endphp

Online Ordering Integration

@if ($message = Session::get('success'))

{{ $message }}

@endif
@if ($errors->any())
Whoops! There were some problems with your input.

@endif {{-- Provider Selection --}}
@foreach (['doordash' => 'DoorDash', 'grubhub' => 'Grubhub', 'ubereats' => 'UberEats'] as $key => $label)
{{ $label }}
@switch($key) @case('doordash') API + Merchant ID @break @case('grubhub') Client ID + Secret @break @case('ubereats') Token + Store ID @break @endswitch
@endforeach

Credentials


@endsection