@extends('layouts.backend')
@section('content-header')
Marques
{{ $brands->total() }} marques
@endsection
@section('content')
| ID |
Logo |
Marque |
Categorie |
Action |
@foreach($brands as $brand)
| {{ $brand->id }} |
{{ $brand->logo }}
|
{{ $brand->name }}
|
{{ $brand->category->name }}
|
|
@endforeach
@endsection