@extends('backend.layouts.grid') @section('title', $user->firstname . ' ' . $user->lastname . ' | Bookings') @section('back', route('admin.users.index')) @section('content')
@include('backend.includes.userlist')
@forelse ($bookings as $log)
{{ $log->ip }}

{{ $log->location }}

@empty @include('backend.includes.empty') @endforelse
{{--{{ $bookings->links() }}--}}
@include('backend.includes.logsmodal') @endsection