@extends('layouts/main') @section('container') {{-- library --}}
{{ __('messages.historytitle') }}
@if (DB::table('answers')->where('user_id', Auth::user()->id)->exists()) @foreach ($answer as $key=>$item)
{{ ++$key }}
{{ $item->business_type }}
{{ $item->business_field }}
{{ $score[$key-1] }}/96
{{ $item->updated_at }}
@endforeach @else
No data
@endif

*Note: {{ __('messages.historynote') }}

@include('part.bottom') @endsection