@extends('layouts.dashboard.main') {{-- content --}} @section('content') {!! Form::open($form) !!} {!! Form::hidden('circular_template[circular_template_code]', $circular_template_code) !!} {{-- nav --}} @include('layouts.dashboard.components.circular.nav') {{-- localnav --}} @include('layouts.dashboard.components.circular.localnav')
{{-- aside --}} {{-- /.aside --}} {{-- main --}}
{!! __("lang.common.count") !!} : {!! $circular_template_list_count !!}
@if($circular_template_list_count > 0) @foreach($circular_template_list as $key => $value) @endforeach @else @endif
#
{!! __("lang.circular_template.circular_template_label") !!} {!! __("lang.circular_template.staff_list_count") !!} {!! __("lang.form.seq") !!} {!! __("lang.form.date_created") !!}
{!! $key + 1 !!}
{!! $value['circular_template_label'] !!}
{!! $value['staff_list_count'] !!}
{!! $value['seq'] !!}
{!! \Carbon\Carbon::parse($value['date_created'])->isoFormat('YYYY年MM月DD日') !!}
 
{!! __("lang.error.empty") !!}
{{-- /.main --}}
{{-- btn-fixed --}}
{!! __("lang.button.back") !!}
{{-- /.btn-fixed --}} {!! Form::close() !!} @endsection {{-- css --}} @section('css') @stop {{-- js --}} @section('js') @stop