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