mercredi 25 octobre 2017

Nested Table Loop Laravel 5.4


I am having some trouble writing some nested HTML Tables from my Laravel Collection.

My Model

public static function offers($userId)
{
    return DB::table('users_vehicles')
    ->join('dealer_offers', 'users_vehicles.id', '=', 'dealer_offers.vehicle_id')
      ->where('user_id', '=', $userId)
      ->select('users_vehicles.*', 'dealer_offers.*');
}

My Controller

public function dash()
{

    $userCars  = UserVehicles::offers(Auth::user()->id)->get();

    return view('customer.dash', compact('userCars'));
}

My Collection Results

a busy cat

In My View blade Template

@foreach( $userCars->chunk(1) as $userCarChunk)
    <div id="no-more-tables">
        <table  class="table table-bordered table-hover">
            <caption>Offers for My Mazda 326 </caption>
            <thead> 
                <tr> 
                    <th class="numeric">DEALER RATING</th> 
                    <th class="numeric">AMOUNT </th>
                    <th class="numeric"> 3 DAYS To Accept </th>
                </tr> 
            </thead> 
            <tbody>
            @foreach( $userCarChunk as $car)
                <tr> 
                    <td data-title="First Name">
                        <div class="rating">
                            <label>
                                <input type="radio" name="rating" value="5" title="5 stars"> 5
                            </label>

                        </div>
                    </td> 
                    <td data-title="Last Name"> 55 000 </td>
                    <td data-title="Username">
                        <a href="">Accept</a>
                    </td> 
                </tr>
                @endforeach
            </tbody> 
        </table>
    </div>
@endforeach

Front-End View

a busy cat

Question

How can I create a nested HTML Table for all the user vehicles, so that I can write the vehicle name and all the offers for that particular vehicle?

I hope my question is clear.



from Newest questions tagged laravel-5 - Stack Overflow http://ift.tt/2gB1i32
via IFTTT

Aucun commentaire:

Enregistrer un commentaire