@extends('layouts.admin') @section('styles') @endsection @section('content')

{{ __('Hosting Management') }}

{{-- সাকসেস মেসেজ --}} @if(session('success'))
{{ session('success') }}
@endif {{-- এরর মেসেজ (লগইন না হলে এটি আপনাকে কারণ জানাবে) --}} @if(session('error'))
{{ session('error') }}
@endif
{{ __('All Customer Hostings') }}
@foreach($hostings as $hosting) {{-- ==================== পূর্ণাঙ্গ কনফিগারেশন মডাল ==================== --}} {{-- মডাল শেষ --}} @endforeach
{{ __('Customer') }} {{ __('Domain & Package') }} {{ __('Server & IP') }} {{ __('Pricing') }} {{ __('Status') }} {{ __('Options') }}
{{ strtoupper(substr($hosting->user->name ?? 'U', 0, 1)) }}
{{ $hosting->user->name ?? 'Guest' }}
{{ $hosting->user->email ?? '' }}
{{ $hosting->domain }}
{{ $hosting->plan->name ?? 'N/A' }}
{{ $hosting->ip_address ?? '0.0.0.0' }}
{{ $hosting->server->name ?? 'No Server' }}
৳ {{ number_format($hosting->amount, 2) }}
{{ $hosting->billing_cycle }}
{{ $hosting->status }}
@endsection