@extends('layouts.app') @section('content')
# | Nom | Type | Prosp/Fid | Volume | Prix du SMS | Paliers | |
---|---|---|---|---|---|---|---|
{{ $smsPackage->id }} | {{ $smsPackage->name }} {{ $smsPackage->is_disabled ? '(désactivé)' : ''}} | {{ $smsPackage->type === 'step' ? 'Paliers' : 'Volume'}} | {{ $smsPackage->campaign_type === 'fid' ? 'Fidélisation' : 'Prospection'}} | {{ $smsPackage->volume}} | {{ $smsPackage->sms_price}} |
@if($smsPackage->type === 'step')
@php
$steps = $smsPackage->steps()->orderBy('volume')->get();
@endphp
@foreach ($steps as $i => $step)
@if(!$loop->last)
{{ $step->volume + ($loop->first ? 0 : 1) }} à {{ $steps[$i+1]->volume }} à {{ $step->sms_price }}€ le SMS
@endif
@endforeach
@endif
|
@can('partner_sms_packages_write')
|