@extends('layouts.app', ['class' => 'g-sidenav-show bg-gray-100']) @section('content') @include('layouts.navbars.auth.topnav', ['title' => 'Seleccionar Negocio'])
Seleccionar Contexto de Negocio

Elige un negocio para operar en su contexto

@foreach($businesses as $business)
{{ $business->name }}

{{ $business->subdomain }}.conversa.app

@if($business->is_active) Activo @else Inactivo @endif
@if($currentBusinessId == $business->id) Actual @endif
@csrf
@endforeach
@if($currentBusinessId)
@csrf
@endif
@include('layouts.footers.auth.footer')
@endsection