@extends('admin.layouts.default') @section('head') {{ HTML::style('//code.jquery.com/ui/1.11.0/themes/smoothness/jquery-ui.css') }} {{ HTML::script('//code.jquery.com/ui/1.11.0/jquery-ui.js') }} {{ Config::get('backend.web_title', '網站內容管理系統') }} @stop @section('content')
{{ Form::model($inputs,array('method'=>'get')) }}
優惠券活動:
{{ Form::text('keyword',null,array('class' => 'form-control')) }}
日期區間:
{{ Form::text('date_start',null,array('class' => 'form-control', 'id' => 'date_start', 'placeholder' => '開始日期')) }}
{{ Form::text('date_end',null,array('class' => 'form-control', 'id' => 'date_end', 'placeholder' => '結束日期')) }}
{{ Form::close() }}
共 {{ $list->getLastPage() }} 頁, {{ $list->getTotal() }} 筆資料
@if ($list->getTotal() > 0)
@foreach ($list as $value) end_at < date('Y-m-d') && $value->end_at != '0000-00-00') {{ ' class="warning"' }} @endif> @endforeach
優惠活動名稱 折扣 數量 開始日期 結束日期 操作
{{ $value->title }} {{ $value->discount }} {{ $value->quantity == 0 ? '不限' : $value->quantity}} {{ $value->start_at == '0000-00-00' ? '不限' : $value->start_at }} {{ $value->end_at == '0000-00-00' ? '不限' : $value->end_at }}
{{-- 多選動作選單 --}} {{-- /多選動作選單 --}} {{-- 分頁 --}}
{{ $list->appends($page_appends)->links() }}
@endif
@stop