@extends('layouts.admin') @section('title', 'Distributor List') @section('page-header')

Distributor List

@endsection {{-- main content --}} @section('content')

Distributor List

@forelse ($distributors as $distributor) @empty @endforelse
SL Company Name E-mail Mobile Active Action
{{ $loop->iteration }} {{ $distributor->company_name }} {{ $distributor->name }} {{ $distributor->email }} {{ $distributor->mobile }} @if ($distributor->is_approved) Active @else Pending @endif {{-- action button --}}
No Data Available
{{-- delete form --}}
@csrf @method("DELETE")
@endsection {{-- extra css --}} @push('css') {{-- data tables style --}} @endpush {{-- extra js --}} @push('js') {{-- DataTables & Plugins --}} @endpush @push('js') @endpush