@extends('layouts.dashboard.main') {{-- content --}} @section('content')
@foreach($board_list as $i => $content)
{!! $content['division_label'] !!}
@if(count($content['board_list']) > 0)
@foreach($content['board_list'] as $key => $value) @endforeach
@else

{!! __("lang.error.empty") !!}

@endif
@endforeach
@endsection {{-- css --}} @section('css') @stop {{-- js --}} @section('js') @stop