@extends('admin.layout.app') {{-- makes everything from admin.app appear here --}} @section('heading', 'Feature Cards ') @section('rightside_button') Add New @endsection @section('main_content')
{{-- Each iteration prints one row () in the table. --}} @foreach ($all_data as $item) @endforeach
Title Description Icon Link Order Status Actions
{{ $item->title }} {!! $item->description !!} {{ $item->icon ?? 'N/A' }} {{ $item->link ?? 'N/A' }} {{ $item->order }} {{ $item->is_active ? 'Active' : 'Inactive' }} Edit Delete
@endsection