@extends('admin.layouts.app') @section('container', 'dashboard-container-lg') @section('section', d_trans('Settings')) @section('title', d_trans('OAuth Providers')) @section('header_title', d_trans('OAuth Providers')) @section('back', route('admin.settings.index')) @section('content')
@foreach ($oauthProviders as $oauthProvider) @endforeach
{{ d_trans('Logo') }} {{ d_trans('name') }} {{ d_trans('Status') }} {{ d_trans('Last Update') }}
{{ $oauthProvider->id }} {{ $oauthProvider->name }} {{ d_trans($oauthProvider->name) }} @if ($oauthProvider->isActive()) {{ $oauthProvider->getStatusName() }} @else {{ $oauthProvider->getStatusName() }} @endif {{ dateFormat($oauthProvider->updated_at) }}
@push('styles_libs') @endpush @push('scripts_libs') @endpush @endsection