@extends('adminlte::page')
@section('title', 'Sergic - Optins')
@section('content_header')
@if(Session::has('message'))
{{ Session::get('message') }}
@endif
Optins - Liste
@stop
@section('content')
Nouveau Optin
Prénom |
Nom |
Mail |
Téléphone |
Newsletter |
Google ID |
Actions |
@foreach($optins as $optin)
{{ $optin->firstname }} |
{{ $optin->lastname }} |
{{ $optin->email }} |
{{ $optin->phone }} |
{{ $optin->consent }} |
{{ $optin->google_id }} |
|
@endforeach
@stop
@section('js')
@stop