@extends('layouts.crud') @section('title', 'Perfis - Cadastrar Novo') @section('content') @section('js') @stop
{!! Form::checkbox('check_all', null) !!} | Perfis | {!! Form::checkbox('check_visualizar', null) !!} Visualizar | {!! Form::checkbox('check_criar', null) !!} Criar | {!! Form::checkbox('check_editar', null) !!} Editar | {!! Form::checkbox('check_deletar', null) !!} Deletar | @foreach($perfis as $perfil)
---|---|---|---|---|---|
{!! Form::checkbox('linha['.$perfil->id.']', null) !!} | {{ $perfil->nome }} | {!! Form::checkbox('index['.$perfil->id.']', true, $perfil->index ?? false) !!} | {!! Form::checkbox('create['.$perfil->id.']', true, $perfil->create ?? false) !!} | {!! Form::checkbox('edit['.$perfil->id.']', true, $perfil->edit ?? false) !!} | {!! Form::checkbox('destroy['.$perfil->id.']', true, $perfil->destroy ?? false) !!} |