@extends('layouts.admin/e-commerce.app') @section('title', 'Brand List') @push('css') @endpush @section('content') Brand List Home Brand List Brand List Add Brand SL Name Description Cover Photo Status Action @foreach ($brands as $key => $data) {{$key + 1}} {{$data->name}} {{Str::words($data->description, 5, '...')}} @if ($data->cover_photo == 'default.png') @else @endif @if ($data->status) Active @else Disable @endif @csrf @method('DELETE') @endforeach SL Name Description Cover Photo Status Action @endsection @push('js') @endpush