@extends('layouts.app') @section('title', 'Employee Dashboard') @section('nav-items')
  • Dashboard
  • My Requests
  • Media Library
  • Brand Assets
  • Giveaways
  • @endsection @section('styles') @endsection @section('content')

    Welcome back, {{ auth()->user()->name }}!

    {{ $stats['my_requests'] }}
    Total Requests
    {{ $stats['pending_requests'] }}
    Pending
    {{ $stats['my_media'] }}
    Media Uploads
    {{ $stats['approved_media'] }}
    Approved

    Quick Actions

    New Request
    Submit a marketing request for artwork, video, event, or exhibition
    Upload Media
    Upload photos and videos to the media library
    Brand Assets
    Access PowerPoint templates and brand guidelines
    Giveaways
    Browse available giveaways with pricing and MOQ
    Recent Requests
    @if($recentRequests->count() > 0) View All Requests @endif
    @endsection