@extends('layouts.core.app') @section('title', 'Scan Result') @section('pageIcon', 'fa fa-qrcode') @section('pageTitle', 'Welcome, '.Auth::user()->name.'! ') @section('subPageTitle', 'Data Service portal for radio station identification with QR Code.') @section('content')
@foreach($result as $key => $value)
  {{$site_name}}
CLIENT ID : {{$value->clnt_id}}
{{$value->clnt_name}}
{{\App\Model\ISR\Site::where('id',$value->site_id)->value('code')}}
  DETAIL
@endforeach
@endsection @section('modals') @include('layouts.dev.scan.detail') @endsection @section('script') @include('layouts.dev.scan.script') @endsection