@extends('layouts.app')
@section('content')
@php
function isPDF($filePath)
{
$extension = pathinfo($filePath, PATHINFO_EXTENSION);
$extension = strtolower($extension);
return $extension === 'pdf' || $extension == 'PDF';
}
@endphp
@if ($customer->service_type_id == 3)
@endif
@if ($type != 0)
@if ($type == 1 && $customer->properties->pluck('id')->contains(1))
@endif
@if ($customer->properties->pluck('id')->contains(2))
@if ($customer->general_sedes != 0)
@endif
@if ($customer->service_type_id == 1 || $customer->general_sedes != 0)
@endif
@endif
@include('customer.show.general')
@endsection