@extends('layouts.master') @section('css') @endsection @section('content')

Home Buttons ({{ $homeButtons->total() }})

@if (count($homeButtons) > 0) @php $i = $homeButtons->perPage() * ($homeButtons->currentPage() - 1) + 1; @endphp @foreach ($homeButtons as $homeButton) @endforeach @else @endif
Sr. No Name Text Color Background Color Icon Index Status Action
{{ $i++ }} {{ $homeButton->name ?? '' }} {{ $homeButton->text_color }}
{{ $homeButton->bg_color }}
@if ($homeButton->image) @else - @endif
{{ $homeButton->index ?? '' }}
@if ($homeButton->type == App\Enums\ButtonEnum::DYNAMIC) @endif
No Data Found
{{ $homeButtons->appends(Request::all())->links() }}
@endsection @section('js') @endsection