@extends('dashboard.layouts.app')
@section('title', trans('admin.brands.title') . ' - ')
@section('speedbar')
@endsection
@section('content')
| ID |
@lang('admin.brands.image') |
@lang('admin.brands.name') |
@lang('admin.partners.position') |
@lang('admin.actions') |
@if (count($brands) == 0)
|
@lang('admin.no_data')
|
@endif
@foreach ($brands as $brand)
| {{ $brand->id }} |
|
{{ $brand->getName() }} |
{{ $brand->position }} |
@can('update', 'brands')
@endcan
@can('delete', 'brands')
@endcan
|
@endforeach
{{ $brands->links('pagination::bootstrap-4') }}
@endsection