@extends('layouts.super_admin.app') @section('styles') @endsection @section('content')
{{ __('global.create_venue') }}

{{ $venues->firstItem() }} - {{ $venues->lastItem() }} of {{ $venues->total() }} {{ __('global.venues') }}

@foreach($venues as $venue) @endforeach
{{ __('global.id') }} {{ __('global.creator') }} {{ __('global.venue') }} {{ __('global.phone') }} {{ __('global.status') }} {{ __('global.joined') }} {{ __('global.actions') }}
{{ $venue->id }}
{{-- image --}} {{ mb_substr($venue->name, 0, 1).mb_substr($venue->last_name, 0, 1) }}
{{ $venue->venue_name }} {{ $venue->phone }} @if($venue->banned) {{ __('global.banned') }} @else @if($venue->phone_verified_at != null || $venue->email_verified_at != null) {{ __('global.verified') }} @else {{ __('global.not_verified') }} @endif @endif {{ \Carbon\Carbon::parse($venue->created_at)->isoFormat('DD MMM YYYY') }}
{{ $venues->appends(request()->query())->links() }}
@endsection @section('scripts') @endsection