@extends('layouts.master') @section('title', 'Histories Datas') @section('styles') @endsection @section('content')

History Data

@foreach ($histories as $history) @endforeach
# Name Addiction Result Date Time #
{{ $loop->iteration }} {{ $history->user->name }} {{ $history->addiction->name }} {{ $history->result }}% {{ $history->created_at->format('d-m-Y H:i:s') }}
@endsection @section('scripts') @endsection