@extends('layouts.client')
@section('content-header')
News & Trends
{{ $trends->total() }} trends
@endsection
@section('content')
| ID |
Titre |
Categorie |
Action |
@foreach($trends as $trend)
| {{ $trend->id }} |
{{ $trend->name }} |
{{ isset($trend->category)?$trend->category->name:null }} |
|
@endforeach
@endsection