@extends('painel-admin.menu') @section('title', 'Soluções') @section('php') @stop @section('content') @if(Session::has('success')) @php $data = Session::get('success'); @endphp @if (is_array($data)) @foreach ($data as $msg) @endforeach @else @endif @endif @if(Session::has('error')) @php $data = Session::get('error'); @endphp @if (is_array($data)) @foreach ($data as $msg) @endforeach @else @endif @endif @csrf

Soluções Gerais


@foreach($solucoes as $solucao)
@csrf @method('DELETE')
{!! $solucao->solucao !!}
@endforeach
{{ $solucoes->appends(request()->query())->links('pagination::bootstrap-4') }}
@endsection