@extends('layouts.app') {{-- Include the layout --}} @section('content')
Dashboard Rights
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif
@csrf @php $mcount = 0; @endphp @foreach($dashboardlist as $list) @php $checked = $list->inactive == 0 ? 'checked' : ''; $mainUrl = url('/'); $imagesrc = $list->imageurl != '' ? (string)$mainUrl.$list->imageurl : ""; @endphp @endforeach
Sr. Name Image Active
{{ ++$mcount }} {{ $list->label }}

@endsection