@extends('Myadmin::layout.basic') @section('header') @stop @section('content')

部落客管理系統




{{Session::get('message')}}
新增 @foreach ($bloggers as $blogger) @endforeach
發佈部落客ID部落客名稱部落客簡介部落客FB部落客IG部落客照片按讚數FOLLOW 數操作
{{ Form::checkbox('publish', 'yes');}} {{{ $blogger->id}}} {{{ $blogger->name}}} {{{ $blogger->description}}} id)}}" class="btn btn-success" >啟用中 @if($blogger->isActive) id)}}" class="btn btn-success" >啟用中 @else id)}}" class="btn btn-danger">停用中 @endif {{{ $blogger->photo}}} {{{ $blogger->like_num}}} {{{ $blogger->follow_num}}} id)}}" class="btn btn-primary">修改 {{ Form::open(array('route'=>array($_CONST["CONTROLLER_ROUTE"].'.destroy', $blogger->id), 'method' => 'delete','style'=>'display:inline') )}} {{ Form::submit('刪除', array("class"=>"delete btn btn-large btn-danger"));}} {{ Form::close()}}
@stop