@extends('guard.layouts.app') @section('content') @section('title', 'Trang chủ')
@foreach (\App\Models\NoticeSystem::where('domain', request()->getHost())->orderBy('id', 'desc')->get() as $noticeSystem)
User image
{{ $noticeSystem->title }}
{{ $noticeSystem->created_at }}

{!! $noticeSystem->content !!}

@endforeach
image
4.5 / 5
user-image
{{ Auth::user()->name ?? 'Bạn chưa đăng nhập'}}

@{{ Auth::user()->username ?? 'Noname'}}

@if (Auth::check())
{{ number_format(Auth::user()->balance) }}đ
Số dư
{{ number_format(Auth::user()->total_recharge) }}đ
Tổng nạp
{{ number_format(Auth::user()->total_recharge - Auth::user()->balance, 0, ',', '.') }}đ
Đã tiêu
@endif
Thống Kê Đơn Hàng
@endsection @section('script') @if (Auth::check()) @else @endif @endsection