`/Store image custom start/
.restaurant-info {
margin-top: 4.2rem;
text-align: left;
padding-left: 2.5rem;
padding-bottom: 1rem !important;
}
.restaurant-image {
width: 100%;
height: auto !important;
float: right;
/height: 14.625rem;/
border-radius: 1.25rem;
margin-top: 1rem;
margin-bottom: 1rem;
}
.single-item {
margin-top: 130px !important;
}
.single-item-img{
display: block !important;
}
/Store image custom end/
/Store ribbon start/
.ribbon-box {
position: absolute;
top: -10px !important;
right: 0;
padding: 0 10px;
height: 22px;
line-height: 21px;
color: #000 !important;
font-weight: 600;
z-index: 0;
margin-top: 0.5rem;
}
/Store ribbon End/`
And you should change image size as 600 x 250 in AdminController and RestaurantOwnerController at saveNewRestaurant and updateRestaurant Functions
Path: app\Http\Controllers\AdminController.php
app\Http\Controllers\RestaurantOwnerController.php
Eg.
Image::make($image)
->resize(600, 250)
->save(base_path('assets/img/restaurants/' . $filename), config('appSettings.uploadImageQuality '), 'jpg');
$restaurant->image = '/assets/img/restaurants/' . $filename;