@extends('layouts.app') @section('urlContent') {!! view('components.breadcrumbs', [ 'b_items' => [ 'Güncel Hizmet Fiyatları' => '/branch/current-service-prices', ], ]) !!} @endsection @section('content')
@php $type = json_decode(Auth::user()->branch->headOffice->working_types); @endphp @if ($type > 0) @if (count($data) > 0)
@if (in_array('hourly', $type)) @endif @if (in_array('daily', $type)) @endif @if (in_array('monthly', $type)) @endif @foreach ($data as $item) @if (in_array('hourly', $type)) @endif @if (in_array('daily', $type)) @endif @if (in_array('monthly', $type)) @endif @endforeach
Kategori Saatlik Günlük Aylık
{{ $item->product_name }}
{{ $item->cost_hourly ? $item->cost_hourly . ' ₺' : 'Anlaşmanız bulunmuyor' }}
{{ $item->cost_daily ? $item->cost_daily . ' ₺' : 'Anlaşmanız bulunmuyor' }}
{{ $item->cost_monthly ? $item->cost_monthly . ' ₺' : 'Anlaşmanız bulunmuyor' }}
@else Hiç Veri Bulunamadı @endif @else Çalışma Tipi Belirtilmemiş @endif
@endsection