@extends('layouts.header') @section('content') @php //print_r($AllModules); //print_r($LiveFeedModules); @endphp

Display Modules of Live Feed

@php $divcount = 1; $loopcount = 0; @endphp @foreach($AllModules as $fields) @if($divcount == 1)
@endif
@php $checked=""; if(array_key_exists($fields->ModuleId,$LiveFeedModules)) { if($LiveFeedModules[$fields->ModuleId]["DeletedStatus"]=="0") { $checked="checked"; } } @endphp
@if($divcount == 3)
@php $divcount=1; @endphp @else @php $divcount++; @endphp @endif @php $loopcount++; @endphp @endforeach
@endsection