@extends('layouts/contentNavbarLayout') @section('title', 'Tables - Basic Tables') @section('content')

Coupon / List

Table Basic
@if(count($data)>0) @foreach ($data as $d) @endforeach @else {{ "No hay nada" }} @endif
Title Start Date End Date Type Price Before Price After Percent Quantity Image State Actions
{{$d->title}} {{$d->startDate}} {{$d->endDate}} {{$d->typeValue}} {{ $d->priceBefore == null ? '-' : $d->priceBefore }} {{ $d->priceAfter == null ? '-' : $d->priceAfter }} {{ $d->percent == null ? '-' : $d->percent }} {{$d->quantity}}
  • Avatar
{{$d->state}}

@endsection