@extends('layouts.user_type.auth') @section('content')
Tourist History
@error('province')

{{ $message }}

@enderror
@error('municipality')

{{ $message }}

@enderror
@error('barangay')

{{ $message }}

@enderror
@error('date')

{{ $message }}

@enderror
@csrf @php $id = 1; $totalTourists = count($tourists); // Get the total number of tourists @endphp @foreach($tourists as $tourist) @endforeach
ID Name Gender Age Address Date

{{ $id++ }}

{{ $tourist->full_name }}

{{ $tourist->gender }}

{{ $tourist->age }}

{{ $tourist->address }} {{ $tourist->date }}
Total Tourist : {{ $totalTourists }}
@endsection