@extends('layouts.app') @section('content') @php $canWriteShortUrl = Auth::user()->partnerCan($partner,'can_write_short_urls' ); $canSeeShortUrlAnalytics = Auth::user()->partnerCan($partner, 'can_see_short_url_analytics'); @endphp
@include('components.alert_success')
@if($canWriteShortUrl) Nouvelle URL @endif Exporter @if($canWriteShortUrl) Importer @endif
@if($shortUrls->count()) @if($canSeeShortUrlAnalytics) @endif @if($canWriteShortUrl) @endif @foreach($shortUrls as $shortUrl) @if($canSeeShortUrlAnalytics) @endif @if($canWriteShortUrl) @endif @endforeach
# URL courte URL longueStatsid campagne Activé
{{ $shortUrl->id }} {{ $shortUrl->short_url_with_domain }} {{ $shortUrl->final_link }} {{ $shortUrl->campaign_id }} @if($shortUrl->is_enabled) @else @endif
{{ $shortUrls->links() }} @else
@if(isset($search)) Aucune URL ne correspond à votre recherche. Tout voir. @else Vous n'avez pas encore d'URL courtes. Créer votre première URL @endif
@endif
@endsection