Work on Service rendering

This commit is contained in:
Deon George
2020-02-05 13:47:24 +09:00
parent 01a7d73c17
commit 5f5d114f42
12 changed files with 412 additions and 313 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace App\Interfaces;
interface ServiceItem
{
/**
* Return the Service Description.
*
* @return string
*/
public function getServiceDescriptionAttribute():string;
/**
* Return the Service Name.
*
* @return string
*/
public function getServiceNameAttribute():string;
}