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

Marques {{ $brands->total() }} marques

@endsection @section('content')

{!! Form::open(['route' => ['backend.brands.index'], 'class' => 'form-inline', 'method' => 'GET']) !!}
@if(request('q')) @endif Ajouter une marque
{!! Form::close() !!}
@foreach($brands as $brand) @endforeach
ID Logo Marque Categorie Action
{{ $brand->id }} {{ $brand->logo }} {{ $brand->name }} {{ $brand->category->name }}
@endsection