@extends('layouts.client') @section('content-header')

News & Trends {{ $trends->total() }} trends

@endsection @section('content')

{!! Form::open(['route' => ['clients.trends.index'], 'class' => '', 'method' => 'GET']) !!}
@if(request('q')) @endif Ajouter News/Trend
{!! Form::close() !!}
@foreach($trends as $trend) @endforeach
ID Titre Categorie Action
{{ $trend->id }} {{ $trend->name }} {{ isset($trend->category)?$trend->category->name:null }}
@endsection