@extends('layouts.backend.app') @section("content")
@if(Session::has('success'))

{{Session::get('success')}}

@endif
@foreach($active_call_me as $key=>$c) @endforeach
# Nom Contact Date Priorité Action
{{ ++$key }} {{ $c->call_name }} {{ $c->call_phone }} {{ date('d/m/Y H:i:s',strtotime($c->created_at)) }} @if($c->call_motif==1) @elseif($c->call_motif==2) @else @endif Afficher
@foreach($my_finish_call_me as $key=>$c) @endforeach
# Nom Contact Motif de l'appel Date Action
{{ ++$key }} {{ $c->call_name }} {{ $c->call_phone }} {{ $c->reason }} {{ $c->created_at }} Traiter
@foreach($all_finish_call_me as $key=>$c) @endforeach
# Nom Contact Motif de l'appel Conseillé Date Action
{{ ++$key }} {{ $c->call_name }} {{ $c->call_phone }} {{ $c->reason }} {{ $c->firstname." ".$c->lastname }} {{ date('d/m/Y H:i:s',strtotime($c->created_at)) }} Afficher
@endsection @section('header-script') @endsection @section('footer-script') @endsection @section('custom-script') @endsection