@extends('SuperAdmin.layout.layout') @section('body')
@php $owner = session('owner'); $hasSmsAccess = false; if ($owner && isset($owner['id'])) { $tenant = \App\Models\Tenant::find($owner['id']); $hasSmsAccess = $tenant && $tenant->sms_access; } @endphp @if(!$hasSmsAccess)SMS access is not enabled for your account. Please contact your administrator to enable SMS functionality.