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

{{!empty($recovery) ?__('Recovery Events') : __("Manage Events")}} @if(Auth::user()->hasPermissionTo('event_create') && empty($recovery)) {{__("Add Event")}} @endif

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