@extends('admin.client.view') @section('client_tab_content')
@lang('crm.media_files')
@lang('crm.customer_files_info_message')
@include('partials.messages')
@if(count($files) > 0) @foreach($files as $file) @php if($file['filetype'] == 'application/pdf') { $file_path = url('/upload/clients/'.$file['rel_id'].'/'.$file['file_name']); echo ""; } else if ($file['filetype'] == 'image/jpeg') { $file_path = url('/upload/clients/'.$file['rel_id'].'/'.$file['file_name']); echo ""; // echo ""; } else { $file_path = url('/upload/clients/'.$file['rel_id'].'/'.$file['file_name']); echo ""; } @endphp @endforeach @endif
@lang('crm.file') @lang('crm.customer_attachments_show_in_customers_area') @lang('crm.file_date_uploaded') @lang('crm.options')
".$file['file_name']."".$file['file_name']."".$file['file_name']."".$file['file_name']." {{ local_time_format($file["dateadded"], true) }}
@stop @section('styles') @stop @section('scripts') {!! HTML::script('assets/js/as/client.js') !!} @stop