@extends('layouts.app_layout') @section('title') All Assignments @endsection @section('content') @if(session('message'))
{{ session('message') }}
@endif @foreach ($assignments as $assignment) @endforeach
Assignment Title Business Location Created By Actions

{{ $assignment->assignment_title }}

{{ $assignment->businessLocation->business_name }}

{{ $assignment->createdPerson->full_name }}

View Edit Delete
{{ $assignments->links() }} @endsection