@extends('layouts.dashboard.main') {{-- content --}} @section('content') {{-- nav --}} @include('layouts.dashboard.components.application.nav')
{{-- aside --}} @include('layouts.dashboard.components.application.log.aside') {{-- main --}}
{{-- section --}}
{{-- toolbar --}}
{!! __('lang.common.count') !!} : {!! $application_list_count !!}
{{-- /.toolbar --}} {{-- table --}}
@if($application_list_count > 0) @foreach($application_list as $key => $value) @endforeach @else @endif
#
{!! __('lang.application.wifi.date_created') !!} {!! __('lang.application.wifi_device.is_auth') !!} {!! __('lang.application.wifi_device.is_done') !!} {!! __('lang.application.wifi_device.timestamp') !!} {!! __('lang.master.usage.title') !!} {!! __('lang.application.wifi_device.title') !!} {!! __('lang.application.wifi_device.device_number') !!} {!! __('lang.application.wifi_device.is_provided') !!}
{!! $key + 1 !!}
{!! \Carbon\Carbon::parse($value['date_created'])->format(__('lang.date.yymmdd')) !!} @if($value['is_auth'])
@endif
@if($value['is_done'])
@endif
@if($value['is_auth']) {!! \Carbon\Carbon::parse($value['timestamp'])->format(__('lang.date.yymmdd')) !!} @endif {!! $value['device_label'] !!} {!! $value['usage_label'] !!} {!! $value['device_number'] !!}
{!! __("lang.dictionary.is_yesno.{$value['is_provided']}") !!}
{!! __('lang.error.empty') !!}
{{-- /.table --}}
{{-- /.section --}}
{{-- /.main --}}
@endsection {{-- css --}} @section('css') @stop {{-- js --}} @section('js') @stop