@extends('layout.app') @section('content')
Add New User
@foreach ($list as $r) @endforeach
# First Name Last Name Contact Status
{{ $loop->iteration }} {{ $r->firstname }} {{ $r->lastname }} {{ $r->contact_no }} @if ($r->status == 'active') Active @else Inactive @endif Edit History {{-- @can('marketing_user_destroy')
@method('DELETE') @csrf
@endcan --}}
@endsection