@extends('layouts.app') @section('content')

Buy & Sell Within Your Campus

The easiest way to find student deals. Buy, sell, and trade with fellow students.

@auth Post Item @else Get Started @endauth

Browse Categories

@foreach($categories as $category)
@switch($category->name) @case('Electronics')πŸ“±@break @case('Books')πŸ“š@break @case('Furniture')πŸͺ‘@break @case('Clothing')πŸ‘•@break @case('Sports')⚽@break @case('Food')πŸ”@break @defaultπŸ“¦ @endswitch

{{ $category->name }}

{{ $category->products_count }} items

@endforeach

Latest Listings

View All β†’
@if($products->isEmpty())

No listings yet. Be the first to post!

@auth Post an Item @else Sign Up to Post @endauth
@else
@foreach($products as $product) @include('components.product-card', ['product' => $product]) @endforeach
@endif

Have Something to Sell?

Post your item in minutes and reach thousands of students on campus.

@auth Post Now @else Create Account @endauth
@endsection