@extends('frontend.layouts.master') @section('content')

Your Orders

@if (empty($projects))

No orders found.

@else @foreach ($projects as $project) @endforeach
Title Project Value Thumbnail Action
{{ $project['title'] }} {{ $project['project_value'] }} Thumbnail
@if ($orders->currentPage() > 1) Previous @endif @if ($orders->currentPage() < $orders->lastPage()) Next @endif
@endif
@endsection