@extends('layouts.app') @section('title', 'My Orders') @section('content')

My Orders

Track and manage your orders

@if($orders->count() > 0) @else

No orders

@if(auth()->user()->isBuyer()) Get started by browsing our marketplace. @else You don't have any orders yet. @endif

@endif
@if($orders->count() > 0)
{{ $orders->links() }}
@endif
@endsection