@extends('layout.dashboard') @section('content')
{{ Lang::get('cachet.dashboard.components') }}

Components

    @foreach($components as $component)
  • {{ $component->name }}
  • @endforeach

Create a component

@if($component = Session::get('component'))
@if($component->isValid()) Awesome. Component added. @else Whoops. Something went wrong with the component. {{ $component->getErrors() }} @endif
@endif
@stop