@extends('layouts.master') @section('content') @php $status = config('custom.status'); @endphp

Lead list

{{--
--}}
Add
All @foreach($status as $key => $item) @php if ($key == 'hang_up') { $color = 'danger'; } elseif ($key == 'booked') { $color = 'success'; } elseif ($key == 'interested') { $color = 'warning'; } else { $color = 'primary'; } @endphp {{ $item }} @endforeach
{{--
--}}
{!! $dataTable->table() !!}
@endsection() @section('script') {!! $dataTable->scripts() !!} @endsection()