@extends('home.partial.layout') @section('content') Dashboard Card Settings Home Dashboard Card Settings @if ($errors->any()) @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif @if(Session::has('success')) {{ session('success') }} @endif @if(Session::has('error')) {{ session('error') }} @endif @csrf Roles Dashboard Cards UPDATE @foreach($roles as $eachrole) {{strtoupper($eachrole->name)}} @foreach($cards as $key => $eachcard) @php if(isset($curacc[$eachrole->id]) && in_array($key, $curacc[$eachrole->id])){ $checked = 'checked'; }else{ $checked = ''; } @endphp {{$eachcard}} @endforeach @endforeach @endsection @section('script') @endsection