{{ __('Seller Dashboard') }}

@auth {{ __('Welcome, ') }}{{ Auth::user()->name }} @endauth

{{ __("Welcome, Seller!") }}

{{ __("You can manage sales and view stock information.") }}

{{-- Left Sidebar Area for Active Users (approx. 1/4 width on medium screens) --}}

{{ __('Active Logged-In Users') }}

{{ __('Users with recent activity:') }}

@if(isset($currentlyLoggedInUsers) && $currentlyLoggedInUsers->count() > 0)
    @foreach($currentlyLoggedInUsers as $user)
  • {{ $user->name }} ({{ ucfirst($user->role) }}) @if ($user->id === Auth::id()) (You) @endif
  • @endforeach
@else

{{ __('No other users currently active.') }}

@endif
{{-- Right Main Content Area for Sales & Stock Links (approx. 3/4 width on medium screens) --}}

{{ __('Sales & Stock Information') }}

View Received Stock

View stock you received.

{{ __('View Received Stock') }}
{{-- Sales Management Cards --}} @can('sell-stock')

My Sales History

View Sales history.

{{ __('My sales history') }}
@endcan @can('sell-stock')

My Stock

My Stock.

{{ __('My Stock') }}
@endcan