@extends('layouts.app') @section('title', 'Customers') @section('breadcrumbs') @endsection @section('content')

Customers

Manage your hotel guests and customers

Add Customer
@for ($i = 0; $i < 12; $i++) @endfor
Name Email Phone Country Total Visits Status Actions
Customer {{ $i + 1 }} customer{{ $i + 1 }}@example.com +1 (555) {{ str_pad(100 + $i, 4, '0', STR_PAD_LEFT) }} @switch($i % 5) @case(0) United States @break @case(1) Canada @break @case(2) United Kingdom @break @case(3) Germany @break @case(4) France @break @endswitch {{ $i + 2 }} visits Active View Edit

Showing 1 to 12 of 156 customers

@endsection