@extends('layouts.index') @section('page_title') All Projects List @endsection @section('locations_active') nav-item active @endsection @section('projects_active') nav-item active @endsection @section('pg_name') Add New Project @endsection @section('headaddons') @endsection @section('content') @if (count($errors) > 0)
@foreach ($errors->all() as $error)
{{$error}}
@endforeach
@endif @if (session('success'))
{{ session('success') }}
@endif
@foreach($projects as $project)
{{ $project->projectName }}

{{ Str::limit($project->projectContent, 100) }}

Created on: {{ $project->created_at->format('Y-m-d') }}
@endforeach
{{ $projects->links('pagination::bootstrap-4') }}
@endsection