@extends('admin.layouts.default') @section('head') @if ($drag_sort) {{ HTML::script('admin/assets/js/libs/jquery.tablednd.js') }} @endif {{ Config::get('backend.web_title', '網站內容管理系統') }} @stop @section('content')
{{ Form::model($inputs,array('method'=>'get')) }}
{{ Form::text('keyword',null,array('class' => 'form-control')) }}
@if (isset($inputs['keyword'])) 清除搜尋 @endif
{{ Form::close() }}
共 {{ $list->getLastPage() }} 頁, {{ $list->getTotal() }} 筆資料
@if ($list->getTotal() > 0)
@foreach ($list as $value) @endforeach
排序 圖片預覽 活動課程標題 活動課程日期 點閱 操作
{{ $value->sort }} @if (!empty($value->file_name) && file_exists('uploads/activity/thumb/'.$value->file_name)) {{ HTML::image('uploads/activity/thumb/'.$value->file_name) }} @else 無圖片 @endif {{ $value->title }} {{ $value->post_at }} {{ $value->click }}
{{-- 多選動作選單 --}} {{-- /多選動作選單 --}} {{-- 分頁 --}}
{{ $list->appends($page_appends)->links() }}
@endif
@stop