@extends('layouts.dashboard') @section('title', 'Gigs') @section('content')
entries

Gigs

@foreach ($gigs as $gig) @endforeach
S/N Website Price Gig Link Gig On Created By Actions
{{ $loop->iteration }} {{ $gig->website }} {{ $gig->price }} {{ Str::limit($gig->gig_link, 30) }} {{ $gig->gig_on }} By: {{ $gig->user?->name ?? 'N/A' }}
At: {{ $gig->created_at }}
{{ $gigs->links() }}
@endsection @section('scripts') @endsection