@extends('layouts.dashboard.main') {{-- content --}} @section('content') {{-- nav --}} @include('layouts.dashboard.components.own.nav')
{{-- aside --}} {{-- /.aside --}} {{-- main --}}
{{-- article --}}
{{-- toolbar --}}
職員数: {!! $staff_list_count !!}{!! __("lang.unit.human") !!}
{{-- /.toolbar --}} {{-- table --}}
@if($staff_list_count > 0) @foreach($staff_list as $key => $value) @endforeach @else @endif
#
{!! __("lang.staff.staff_number") !!} {!! __("lang.class.title") !!} {!! __("lang.staff.staff_name") !!} {!! __("lang.employee.title") !!}
{!! __("lang.staff.is_foreigner") !!}
{!! __("lang.own.title") !!}
{!! implode('', [ __("lang.circular.title"), __("lang.common.manage"), ]) !!}
{!! $key + 1 !!}
{!! $value['staff_number'] !!}
{!! $value['class_label'] !!} @if($value['is_foreigner']) {!! implode(' ', [ $value['staff_skana'], //$value['staff_mname'], $value['staff_gkana'], ]) !!} @else {!! implode(' ', [ $value['staff_sname'], $value['staff_gname'], ]) !!} @endif
{!! $value['employee_label'] !!}
@if($value['is_foreigner'])
@endif
@if($value['is_own'])
@endif
@if($value['is_circular'])
@endif
{{-- /.table --}}
{{-- /.article --}}
{{-- /.main --}}
{{-- btn-fixed --}}
{!! __("lang.button.back") !!}
{{-- /.btn-fixed --}} @endsection {{-- css --}} @section('css') @stop {{-- js --}} @section('js') @stop