@extends('layouts.app_layout') @section('title') Searched Business Locations @endsection @section('content') @if(session('message'))
{{ session('message') }}
@endif @foreach ($business_locations as $business_location) @endforeach
logo Name Address Phone Alternatiev Phone Email License Start Date License End Date Max Assignments Max Students Max Submissions Status Owner Name Created By Actions
@if ($business_location->logo !== null) {{ $business_location->business_name }} @else No Logo @endif

{{ $business_location->business_name }}

{{ $business_location->address }}

{{ $business_location->phone }}

{{ $business_location->alternative_phone }}

{{ $business_location->email }}

{{ $business_location->license_start_date }}

{{ $business_location->license_end_date }}

{{ $business_location->max_assignments }}

{{ $business_location->max_students }}

{{ $business_location->max_submissions }}

@if ($business_location->is_active == 1)

Active

@else

Not Active

@endif

{{ $business_location->owner->user_name }}

{{ $business_location->createdPerson->user_name }}

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