Need help with the design of the text on the site page,I display the data of the table and they do not look good (attached a screenshot) help my view file:
@extends('layouts.layout')
@section('title')Бізнес@endsection
@section ('main_content')
<h1>Бизнес</h1>
<p>
@foreach ($business as $singleBusiness)
<li>{{ $singleBusiness->id}}</li>>
<li>{{ $singleBusiness->name}}</li>>
<li>{{ $singleBusiness->mail}}</li>>
<li>{{ $singleBusiness->website}}</li>>
@endforeach
</p>
@endsection
` and `