79114521

Date: 2024-10-22 14:27:20
Score: 0.5
Natty:
Report link
you should your services each by column like

    
@foreach($accounts as $account)
<table>
    <thead>
        <tr>
            <th>Service {{$account->id}}</th>
            <th>Email</th>
            <th>Password</th>
            <th>Country</th>
            <th>Expiration</th>
            <th>Last Days</th>
        </tr>
    </thead>
    <tbody>

            <tr>
                <td width="20">{{ $account->service->name }}</td>
                <td width="35">{{ $account->email }}</td>
                <td width="13">{{ $account->password }}</td>
                <td width="10">{{ $account->pais }}</td>
                <td width="20">{{ $account->dateto }}</td>
                <td width="10">{{ $account->last_days }}</td>
            </tr>
    
    </tbody>
</table>

@endforeach
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: spacecowboy