@extends('template.app')
@section('title', 'Merek')
@section('css')
@endsection
@section('breadcrumb')
Merek
@endsection
@section('content')
@include('components.toast-notification')
|
Nama |
Deskripsi |
Logo |
Aksi |
@foreach($brands as $brand)
|
{{ $brand->name }} |
{{ $brand->description }} |
@if($brand->logo)
@else
No Logo
@endif
|
|
@endforeach
@endsection
@section('js')
@endsection