@extends('master') @section('content')
@include('admin.layout.breadcrumbs', [ 'title' => __('Customers Report'), ])

{{__('Customers Report')}}

@if (session('status')) @endif
@csrf
@foreach ($data as $item) @endforeach
{{__('Customer Name')}} {{__('Email')}} {{__('phone')}} {{__('Buy total tickets')}} {{__('Registered at')}}
image
{{$item->name.' '.$item->last_name}}
{{$item->email}} {{$item->phone==null?'-':$item->phone}} {{$item->buy_tickets}} {{$item->created_at->format('Y-m-d')}}
@endsection