app.blade.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. @extends('layouts.core.app')
  2. @section('title', 'Scan Result')
  3. @section('pageIcon', 'fa fa-qrcode')
  4. @section('pageTitle', 'Welcome, '.Auth::user()->name.'! ')
  5. @section('subPageTitle', 'Data Service portal for radio station identification with QR Code.')
  6. @section('content')
  7. <div class="row">
  8. @foreach($result as $key => $value)
  9. <div class="col-md-3">
  10. <div class="mb-3 card card-body"><h5 class="card-title"><i class="fa fa-broadcast-tower"></i>&nbsp;&nbsp;{{$value->name}}</h5>
  11. <table class="table">
  12. <tbody>
  13. <tr>
  14. <td>CLIENT ID : {{\App\Model\ISR\ISRMaster::where('site_id',$value->id)->value('clnt_id')}}</td>
  15. </tr>
  16. <tr>
  17. <td>{{\App\Model\ISR\ISRMaster::where('site_id',$value->id)->value('clnt_name')}}</td>
  18. </tr>
  19. <tr>
  20. <td><b>{{$value->code}}</b></td>
  21. </tr>
  22. </tbody>
  23. </table>
  24. <a class="btn btn-info btn-sm text-white buttonDetail" data-toggle="modal" data-target=".modalDetail" data-id="{{\App\Model\ISR\ISRMaster::where('site_id',$value->id)->value('id')}}"><i class="fa fa-desktop"></i>&nbsp;&nbsp;DETAIL</a>
  25. </div>
  26. </div>
  27. @endforeach
  28. </div>
  29. @endsection
  30. @section('modals')
  31. @include('layouts.dev.scan.detail')
  32. @endsection
  33. @section('script')
  34. @include('layouts.dev.scan.script')
  35. @endsection