@extends('layouts.default_module') @section('module_name') About us @stop {{-- @section('add_btn') {!! Form::open(['method' => 'get', 'route' => ['aboutus.create'], 'files'=>true]) !!} {!! Form::submit('Add', ['class' => 'btn btn-success pull-right']) !!} {!! Form::close() !!} @stop --}} @section('table-properties') width="400px" style="table-layout:fixed;" @endsection @section('table') Name Edit {{-- Delete --}} @foreach($about_us as $c) {!! ucwords($c->name ) !!} {!! link_to_action('Admin\About_UsController@edit', 'Edit', array($c->id), array('class' => 'badge bg-info')) !!} {{-- {!! Form::open(['method' => 'POST', 'route' => ['aboutus.delete', $c->id]]) !!} {!! $c->deleted_at?'Activate':'Delete' !!} {!! Form::close() !!} --}} @endforeach @section('pagination') {!! $about_us->render() !!}
@endsection @stop