@extends('layouts.app') @section('content')
Dashboard - Brands
@if (session('status')) @endif @if (session()->has('message'))
{!! session()->get('message') !!}
@endif

Add Brand


@if($brands->count()>0)
@foreach($brands as $brand) @endforeach
Brand Logo Products Description Status Action
{{$brand->brand_name}} {{str_limit($brand->brand_description,10)}} @if($brand->brand_status == 1) Shown @else Hidden @endif
{{csrf_field()}} {{method_field('DELETE')}}
@endif {{-- @if($dlfiles->count()>0)
@foreach($dlfiles as $dlfile) --}}{{-- --}}{{-- @endforeach
DL Name DL File Show/Hide Action
{{$dlfile->id}}{{$dlfile->dl_name}} {{str_limit($dlfile->dl_file_url, 10)}} @if($dlfile->dl_show == 1) Shown @else Hidden @endif
{{csrf_field()}} {{method_field('DELETE')}}
--}}{{-- {{$dlfiles->links()}}--}}{{--
@endif--}}
@endsection