@extends('layouts.master') @section('content')
Back to Dashboard
Add Project
@csrf
@if(Session::has('success'))

{{ Session('success') }}

@endif @if(Session::has('error'))

{{ Session('error') }}

@endif
Projects
@foreach($projects as $project) @endforeach
Code Name Description Action
{{ $project->code }} {{ $project->name }} {{ $project->description }}
@endsection