@extends('layouts.admin') @section('page-title') {{__('Manage Leads')}} @if($pipeline) - {{$pipeline->name}} @endif @endsection @push('css-page') @endpush @push('script-page') @endpush @section('breadcrumb')
{{__('Name')}} | {{__('Subject')}} | {{__('Stage')}} | {{__('Users')}} | {{__('Action')}} | |
---|---|---|---|---|---|
{{ $lead->name }} | {{ $lead->subject }} | {{ !empty($lead->stage)?$lead->stage->name:'-' }} |
@foreach($lead->users as $user)
|
@if(Auth::user()->type != 'Client')
@can('view lead') @if($lead->is_active) @endif @endcan @can('edit lead') @endcan @can('delete lead') @endif | @endif|
{{ __('No data available in table') }} |