@extends('admin.layout') @section('content')

{{ trans('Foot Print') }}

@if(session()->has('message'))

{{ trans('labels.Successlabel') }}

{{ session()->get('message') }}
@endif @if(session()->has('error'))

{{ trans('labels.WarningLabel') }}

{{ session()->get('error') }}
@endif
Search By: Id
Search By: Name
Search By: Date

Lead Data

@if(count($result)>0) @foreach ($result as $key) @endforeach @else @endif
{{ trans('Leads Id') }} {{ trans('Name') }} {{ trans('Action') }} {{ trans('Date') }} {{ trans('Page') }}
{{ $key->data }} {{ $key->name }} {{ $key->action }} {{ date('d-m-Y', strtotime($key->modification_date)) }} {{ $key->page }}
No record found

Account Data

@if(count($account)>0) @foreach ($account as $key) @endforeach @else @endif
{{ trans('Account Id') }} {{ trans('Name') }} {{ trans('Action') }} {{ trans('Date') }} {{ trans('Page') }}
{{ $key->data }} {{ $key->name }} {{ $key->action }} {{ date('d-m-Y', strtotime($key->modification_date)) }} {{ $key->page }}
No record found

Opportunity Data

@if(count($opportunity)>0) @foreach ($opportunity as $key) @endforeach @else @endif
{{ trans('Account Id') }} {{ trans('Name') }} {{ trans('Action') }} {{ trans('Date') }} {{ trans('Page') }}
{{ $key->data }} {{ $key->name }} {{ $key->action }} {{ date('d-m-Y', strtotime($key->modification_date)) }} {{ $key->page }}
No record found

Ticket Data

@if(count($ticket)>0) @foreach ($ticket as $key) @endforeach @else @endif
{{ trans('Account Id') }} {{ trans('Name') }} {{ trans('Action') }} {{ trans('Date') }} {{ trans('Page') }}
{{ $key->data }} {{ $key->name }} {{ $key->action }} {{ date('d-m-Y', strtotime($key->modification_date)) }} {{ $key->page }}
No record found
@endsection @section('scripts') @endsection