@extends('layouts.admin')
@section('title', 'Why Choose Us Cards')
@section('page_title', 'Feature Cards')
@section('content')
| Icon |
Heading |
Paragraph |
Actions |
@forelse($cards as $card)
|
|
{{ $card->heading }} |
{{ Str::limit($card->paragraph, 100) }}
|
|
@empty
| No feature cards found. |
@endforelse
@endsection