@extends('web.home.layout.master') @section('content') @php $user = Auth::user(); $userData = App\Models\User::where('id', $user->id)->first(); $userimage = $userData->image ?? null; $address = $userData->address ?? 'Not Updated'; @endphp
Recycling Points

{{ number_format($user->recycling_points ?? 0, 2) }}

Earn points by returning clean plastic waste!

@if (session('message'))
{{ session('message') }}
@endif
@endsection