@extends('merchant.layouts.master') @push('css') @endpush @section('breadcrumb') @include('merchant.components.breadcrumb',['breadcrumbs' => [ [ 'name' => __("Dashboard"), 'url' => setRoute("merchant.dashboard"), ] ], 'active' => __($page_title)]) @endsection @section('content')
{{ __("developer API") }}
@if (auth()->user()->developerApi)
@forelse ($apis ?? [] as $item) @empty @include('admin.components.alerts.empty2',['colspan' => 6]) @endforelse
{{ __("name") }} {{ __('Client ID') }} {{ __('Secret ID') }} {{ __('Mode') }} {{ __('Created At') }} {{ __('action') }}
{{ $item->name }}
{{ textLength($item->client_id, 20) }}
{{ textLength($item->client_secret, 20) }}
{{ $item->mode }} {{ dateFormat('d M Y , h:i:s A', $item->created_at) }}
@endif
@endsection @push('script') @endpush