@extends('layouts.user') @section('head') @endsection @section('content')

{{!empty($recovery) ?__('Recovery Gigs') : __("Manage Gigs")}} @if(Auth::user()->hasPermission('gig_manage') && empty($recovery)) {{__("Add Gig")}} @endif

@include('admin.message') @if($rows->total() > 0)
{{ __("Showing :from - :to of :total Gigs",["from"=>$rows->firstItem(),"to"=>$rows->lastItem(),"total"=>$rows->total()]) }} {{$rows->appends(request()->query())->links()}}
@foreach($rows as $row)
@include('Gig::frontend.vendorGig.loop-list')
@endforeach
{{ __("Showing :from - :to of :total Gigs",["from"=>$rows->firstItem(),"to"=>$rows->lastItem(),"total"=>$rows->total()]) }} {{$rows->appends(request()->query())->links()}}
@else {{__("No Gig")}} @endif @endsection @section('footer') @endsection