@extends('layouts.admin') @section('content')

Home Section

@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

@csrf
@if($home->count()>0) @php $i=1; @endphp @foreach($home as $row)

Row {{$i}}

             
@php $i=$i+1; @endphp @endforeach @else

Row 1

             
@endif
@endsection