This is my body content.
| Team | Points |
|---|---|
| Liverpool | 100 |
| Ansenal | 120 |
| Tottenham | 134 |
<x-layout>
<div class="ds-about-us">
<p>This is my body content.</p>
<x-alert type="success">
<x-slot:title>
Profile updated
</x-slot>
<p>Thank you for updating your information</p>
</x-alert>
@php
$data['results'] = [
['team' => 'Liverpool', 'points' => 100],
['team' => 'Ansenal', 'points' => 120],
['team' => 'Tottenham', 'points' => 134]
];
@endphp
<x-premier-league-table :data="$data" class="" />
</div>
</x-layout>
Edit markup