@extends('front.layouts.main')
@section('header')
@endsection
@section('content')
| ID |
Category Name |
Delete |
@foreach($category as $listing)
| {{$listing->id}} |
{{$listing->category_name}} |
Delete
|
@endforeach
| ID |
Sub Category Name |
Delete |
@foreach($subcategory as $listing)
| {{$listing->id}} |
{{$listing->sub_category}} |
Delete
|
@endforeach
| ID |
Brand Name |
Delete |
@foreach($brand as $listing)
| {{$listing->id}} |
{{$listing->brand}} |
Delete
|
@endforeach
@endsection
@section('scripts')
@endsection
@section('js')
@endsection