@extends('layouts.compact_menu') {{-- Page title --}} @section('title') Board Order @parent @stop @section('header_styles') @stop @section('content')
@include('flash::message')
Board Order
@foreach($boards as $k => $board) @endforeach
Name Account Status
{{$k}} {{$board->name}} {{$board->account->account_name}} @php $role_id = \Auth::user()->role->id; @endphp @if($role_id == 1) @else @if($board->status == 1) ACTIVE @else INACTIVE @endif @endif
@endsection @section('footer_scripts') @stop