@extends('layouts.app') @section('title', $funnel->name . ' - データ(日別)') @section('page-title', $funnel->name) @section('content')
ファネル一覧
@include('funnel.partials.detail-nav', ['funnel' => $funnel])
日別ページ作成数(直近30日)
@forelse($pages as $row) @empty @endforelse
日付件数
{{ \Illuminate\Support\Carbon::parse($row->d)->format('Y/m/d') }} {{ $row->c }}
データがありません
@endsection