@extends('layouts.app') @section('urlContent') @php // GERI DONULECEK IDYI AL $offices = request()->segment(3); $branch = request()->segment(5); @endphp {!! view('components.breadcrumbs', [ 'b_items' => [ 'Firmalar' => '/root/offices', 'Firma Bilgileri ve Şubeler' => '/root/offices/' . $offices . '#section_2', 'Şube Bilgileri' => '/root/offices/' . $offices . '/branch/' . $branch, ], ]) !!} @endsection @section('content')
{{ $department->phone }}
{{ Str::limit($department->email, 25) }}
{{ Str::limit($department->user->full_name, 25) }}
@php $payment_type = $department->payment_type; if ($payment_type == 'hourly') { $payText = 'Saatlik'; } elseif ($payment_type == 'daily') { $payText = 'Günlük'; } elseif ($payment_type == 'monthly') { $payText = 'Aylık'; } @endphp {{ $payText }}
@if ($department->customer_role == 'Company') {{ $department->customer_user->headOffice->min_work_hour }} @else {{ $department->customer_user->branch->headOffice->min_work_hour }} @endif