@extends('layouts.app') @section('titlePage', 'Student Track') @push("styles") @endpush @section('content')
Student Track
@include('common.alert')
@foreach ($data as $value) @php $det = (array) json_decode($value->device_details); @endphp @endforeach
Student Details College Name Test / Date Device
Name: {{ $value->fullname }}
Email: {{ $value->email }}
Registration No: {{ $value->registration_number }}
Phone: {{ $value->phone_number }}
{{ $value->client_org_name }} Test: {{ $value->title }}
Date & Time: {{ $value->created_at }}
@foreach($det as $key => $val) {{ $key }}: {{ $val[0] }}
@endforeach JavaScript:{{ $value->js_details }}
{{-- Pagination --}}
{!! $data->appends(Request::all())->links() !!}
@endsection @section('script') @endsection