@extends('layouts.appadmin') @section('content')
@if(session('success'))
{{session('success')}}
@endif @if(session('error'))
{{session('error')}}
@endif
Projetos
Inserir @foreach($projetos as $projeto) @endforeach
ID Titulo Ações
{{ $projeto->id }} {{ substr($projeto->nome, 0, 70) }} @if(strlen($projeto->nome) > 70) [...] @endif
@stop @section('scripts') @stop