21 lines
569 B
PHP
21 lines
569 B
PHP
@props(['item' => 'results', 'search', 'message', 'title'])
|
|
|
|
@php
|
|
if(!isset($message)) {
|
|
if(!isset($search) || $search == '')
|
|
$message = "We couldn't find any $item";
|
|
else
|
|
$message = "We couldn't find any $item matching \"$search\"";
|
|
}
|
|
|
|
if(!isset($title)) {
|
|
$title = "No results found";
|
|
}
|
|
@endphp
|
|
|
|
<div class="flex flex-col items-center my-8 w-full">
|
|
<i class="text-gray-300 mb-6 text-8xl fa-solid fa-magnifying-glass"></i>
|
|
<h3 class="text-2xl font-bold">{{ $title }}</h3>
|
|
<p class="text-gray-500 mt-2">{{ $message }}</p>
|
|
</div>
|