@extends('layouts.app') @section('content')
{{__('texte.services_arr.show.name')}}: {{ $service->name }}
{{__('texte.services_arr.show.is_fixed_price')}}: {{ $service->is_fixed_price==1 ? __('texte.services_arr.show.yes') : __('texte.services_arr.show.no') }}
@if($service->is_fixed_price=1)
{{__('texte.services_arr.show.price')}}: {{ $service->price }}
{{__('texte.services_arr.show.price_supply')}}: {{ $service->price_supply }}
@endif
{{__('texte.services_arr.show.active')}}: {{ $service->active==1 ? __('texte.services_arr.show.yes') : __('texte.services_arr.show.no') }}
@endsection